diff options
author | Steffen Klassert <steffen.klassert@secunet.com> | 2020-01-25 11:26:42 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-01-27 11:00:21 +0100 |
commit | 3b33583265ed3b0ae76eddbabf9d038b4076d1a9 (patch) | |
tree | 221f57ea09c94f91e5f83a887ebd8d91f94b27a2 /include/linux/skbuff.h | |
parent | 79572c98c554dcdb080bca547c871a51716dcdf8 (diff) | |
download | lwn-3b33583265ed3b0ae76eddbabf9d038b4076d1a9.tar.gz lwn-3b33583265ed3b0ae76eddbabf9d038b4076d1a9.zip |
net: Add fraglist GRO/GSO feature flags
This adds new Fraglist GRO/GSO feature flags. They will be used
to configure fraglist GRO/GSO what will be implemented with some
followup paches.
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 26beae7db264..23aaaf08e1e9 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -592,6 +592,8 @@ enum { SKB_GSO_UDP = 1 << 16, SKB_GSO_UDP_L4 = 1 << 17, + + SKB_GSO_FRAGLIST = 1 << 18, }; #if BITS_PER_LONG > 32 |