mirror of
https://github.com/openvswitch/ovs
synced 2025-10-11 13:57:52 +00:00
The linux-2.6 and compat-2.6 directories apply equally to the upcoming Linux 3.0 release, so this drops the 2.6 suffix and updates Makefiles. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
11 lines
426 B
C
11 lines
426 B
C
/* We fix grp->id to 32 so that it doesn't collide with any of the multicast
|
|
* groups selected by openvswitch_mod, which uses groups 16 through 31.
|
|
* Collision isn't fatal--multicast listeners should check that the family is
|
|
* the one that they want and discard others--but it wastes time and memory to
|
|
* receive unwanted messages. */
|
|
|
|
#define GENL_FIRST_MCGROUP 32
|
|
#define GENL_LAST_MCGROUP 32
|
|
|
|
#include "genetlink.inc"
|