net: page_pool: record pools per netdev
authorJakub Kicinski <kuba@kernel.org>
Sun, 26 Nov 2023 23:07:30 +0000 (15:07 -0800)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 28 Nov 2023 14:48:39 +0000 (15:48 +0100)
commit083772c9f972dcc248913b52a0dec1025baa1e16
tree571696450af19199654e4531877b3bd6afd258ff
parentf17c69649c698e4df3cfe0010b7bbf142dec3e40
net: page_pool: record pools per netdev

Link the page pools with netdevs. This needs to be netns compatible
so we have two options. Either we record the pools per netns and
have to worry about moving them as the netdev gets moved.
Or we record them directly on the netdev so they move with the netdev
without any extra work.

Implement the latter option. Since pools may outlast netdev we need
a place to store orphans. In time honored tradition use loopback
for this purpose.

Reviewed-by: Mina Almasry <almasrymina@google.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
include/linux/list.h
include/linux/netdevice.h
include/linux/poison.h
include/net/page_pool/types.h
net/core/page_pool_user.c