]> www.infradead.org Git - users/jedix/linux-maple.git/commit
net: add netmem to skb_frag_t
authorMina Almasry <almasrymina@google.com>
Wed, 14 Feb 2024 22:34:03 +0000 (14:34 -0800)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 20 Feb 2024 08:22:58 +0000 (09:22 +0100)
commit21d2e6737c9789aa9b23c8a4131cbca8260139fd
tree1b4f042cb1272aa4fb9fbefa7c9db26a33708804
parent18ddbf5cf0e7553fd05c3e1a02d740514ee3f0a6
net: add netmem to skb_frag_t

Use struct netmem* instead of page in skb_frag_t. Currently struct
netmem* is always a struct page underneath, but the abstraction
allows efforts to add support for skb frags not backed by pages.

There is unfortunately 1 instance where the skb_frag_t is assumed to be
a exactly a bio_vec in kcm. For this case, WARN_ON_ONCE and return error
before doing a cast.

Add skb[_frag]_fill_netmem_*() and skb_add_rx_frag_netmem() helpers so
that the API can be used to create netmem skbs.

Signed-off-by: Mina Almasry <almasrymina@google.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
include/linux/skbuff.h
net/core/skbuff.c
net/kcm/kcmsock.c