flow_dissector: Don't use bit fields.
Just have a flags member instead. In file included from include/linux/linkage.h:4:0, from include/linux/kernel.h:6, from net/core/flow_dissector.c:1: In function 'flow_keys_hash_start', inlined from 'flow_hash_from_keys' at net/core/flow_dissector.c:553:34: >> include/linux/compiler.h:447:38: error: call to '__compiletime_assert_459' declared with attribute error: BUILD_BUG_ON failed: FLOW_KEYS_HASH_OFFSET % sizeof(u32) Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -12,11 +12,13 @@
|
||||
struct flow_dissector_key_control {
|
||||
u16 thoff;
|
||||
u16 addr_type;
|
||||
u32 is_fragment:1;
|
||||
u32 first_frag:1;
|
||||
u32 encapsulation:1;
|
||||
u32 flags;
|
||||
};
|
||||
|
||||
#define FLOW_DIS_IS_FRAGMENT BIT(0)
|
||||
#define FLOW_DIS_FIRST_FRAG BIT(1)
|
||||
#define FLOW_DIS_ENCAPSULATION BIT(2)
|
||||
|
||||
/**
|
||||
* struct flow_dissector_key_basic:
|
||||
* @thoff: Transport header offset
|
||||
|
Reference in New Issue
Block a user