diff options
Diffstat (limited to 'net/openvswitch/conntrack.h')
-rw-r--r-- | net/openvswitch/conntrack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/conntrack.h b/net/openvswitch/conntrack.h index d6eca8394254..da8714942c95 100644 --- a/net/openvswitch/conntrack.h +++ b/net/openvswitch/conntrack.h | |||
@@ -35,7 +35,7 @@ void ovs_ct_fill_key(const struct sk_buff *skb, struct sw_flow_key *key); | |||
35 | int ovs_ct_put_key(const struct sw_flow_key *key, struct sk_buff *skb); | 35 | int ovs_ct_put_key(const struct sw_flow_key *key, struct sk_buff *skb); |
36 | void ovs_ct_free_action(const struct nlattr *a); | 36 | void ovs_ct_free_action(const struct nlattr *a); |
37 | 37 | ||
38 | static inline bool ovs_ct_state_supported(u8 state) | 38 | static inline bool ovs_ct_state_supported(u32 state) |
39 | { | 39 | { |
40 | return !(state & ~(OVS_CS_F_NEW | OVS_CS_F_ESTABLISHED | | 40 | return !(state & ~(OVS_CS_F_NEW | OVS_CS_F_ESTABLISHED | |
41 | OVS_CS_F_RELATED | OVS_CS_F_REPLY_DIR | | 41 | OVS_CS_F_RELATED | OVS_CS_F_REPLY_DIR | |
@@ -53,7 +53,7 @@ static inline bool ovs_ct_verify(struct net *net, int attr) | |||
53 | return false; | 53 | return false; |
54 | } | 54 | } |
55 | 55 | ||
56 | static inline bool ovs_ct_state_supported(u8 state) | 56 | static inline bool ovs_ct_state_supported(u32 state) |
57 | { | 57 | { |
58 | return false; | 58 | return false; |
59 | } | 59 | } |