mirror of
https://github.com/openvswitch/ovs
synced 2025-10-27 15:18:06 +00:00
Kernel 3.3 to 3.8 has defined `struct flow_keys` but does not contains flow_keys.thoff field. Therefore we need to use compat definition for flow_keys struct. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
23 lines
387 B
C
23 lines
387 B
C
#ifndef _NET_FLOW_KEYS_WRAPPER_H
|
|
#define _NET_FLOW_KEYS_WRAPPER_H
|
|
|
|
#include <linux/version.h>
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0)
|
|
#include_next <net/flow_keys.h>
|
|
#else
|
|
struct flow_keys {
|
|
/* (src,dst) must be grouped, in the same way than in IP header */
|
|
__be32 src;
|
|
__be32 dst;
|
|
union {
|
|
__be32 ports;
|
|
__be16 port16[2];
|
|
};
|
|
u16 thoff;
|
|
u8 ip_proto;
|
|
};
|
|
#endif
|
|
|
|
#endif
|