diff options
author | Edward Cree <ecree.xilinx@gmail.com> | 2022-11-03 16:27:30 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-11-05 03:54:24 +0100 |
commit | 5ca7ef293866f034c9a21a567a498dadfd1d57a8 (patch) | |
tree | e7adfdf617472aa15c628355c962d553b02b9d70 /drivers/net/ethernet/sfc/tc.h | |
parent | sfc: add Layer 3 matches to ef100 TC offload (diff) | |
download | linux-5ca7ef293866f034c9a21a567a498dadfd1d57a8.tar.xz linux-5ca7ef293866f034c9a21a567a498dadfd1d57a8.zip |
sfc: add Layer 3 flag matches to ef100 TC offload
Support matching on ip_frag and ip_firstfrag.
Signed-off-by: Edward Cree <ecree.xilinx@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/ethernet/sfc/tc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/sfc/tc.h b/drivers/net/ethernet/sfc/tc.h index aebe9c251b2c..d2b61926657b 100644 --- a/drivers/net/ethernet/sfc/tc.h +++ b/drivers/net/ethernet/sfc/tc.h @@ -38,6 +38,7 @@ struct efx_tc_match_fields { #ifdef CONFIG_IPV6 struct in6_addr src_ip6, dst_ip6; #endif + bool ip_frag, ip_firstfrag; }; struct efx_tc_match { |