summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorRoi Dayan <roid@nvidia.com>2021-04-13 11:06:05 +0300
committerPablo Neira Ayuso <pablo@netfilter.org>2021-04-13 13:47:00 +0200
commit78ed0a9bc6db76f8e5f5f4cb0d2b2f0d1bb21b24 (patch)
tree7d42eb7a1cfba6213e7db1d6581a3576cf243044 /include/net
parent9b1a4d0f914b1186248fc88b1cb6ee49e336a2b2 (diff)
downloadlinux-78ed0a9bc6db76f8e5f5f4cb0d2b2f0d1bb21b24.tar.bz2
netfilter: flowtable: Add FLOW_OFFLOAD_XMIT_UNSPEC xmit type
It could be xmit type was not set and would default to FLOW_OFFLOAD_XMIT_NEIGH and in this type the gc expect to have a route info. Fix that by adding FLOW_OFFLOAD_XMIT_UNSPEC which defaults to 0. Fixes: 8b9229d15877 ("netfilter: flowtable: dst_check() from garbage collector path") Signed-off-by: Roi Dayan <roid@nvidia.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/netfilter/nf_flow_table.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_flow_table.h b/include/net/netfilter/nf_flow_table.h
index d46e422c9d10..51d8eb99764d 100644
--- a/include/net/netfilter/nf_flow_table.h
+++ b/include/net/netfilter/nf_flow_table.h
@@ -92,7 +92,8 @@ enum flow_offload_tuple_dir {
#define FLOW_OFFLOAD_DIR_MAX IP_CT_DIR_MAX
enum flow_offload_xmit_type {
- FLOW_OFFLOAD_XMIT_NEIGH = 0,
+ FLOW_OFFLOAD_XMIT_UNSPEC = 0,
+ FLOW_OFFLOAD_XMIT_NEIGH,
FLOW_OFFLOAD_XMIT_XFRM,
FLOW_OFFLOAD_XMIT_DIRECT,
};