]> git.ipfire.org Git - thirdparty/linux.git/commit
gtp: Use for_each_netdev_rcu() in gtp_genl_dump_pdp().
authorKuniyuki Iwashima <kuniyu@amazon.com>
Fri, 10 Jan 2025 01:47:52 +0000 (10:47 +0900)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 14 Jan 2025 10:20:04 +0000 (11:20 +0100)
commit46841c7053e6d25fb33e0534ef023833bf03e382
tree1118f96010a379f955cef07a584d97701d8ed4a8
parent644f9108f3a505022ef43510e5143cb985e0cf8b
gtp: Use for_each_netdev_rcu() in gtp_genl_dump_pdp().

gtp_newlink() links the gtp device to a list in dev_net(dev).

However, even after the gtp device is moved to another netns,
it stays on the list but should be invisible.

Let's use for_each_netdev_rcu() for netdev traversal in
gtp_genl_dump_pdp().

Note that gtp_dev_list is no longer used under RCU, so list
helpers are converted to the non-RCU variant.

Fixes: 459aa660eb1d ("gtp: add initial driver for datapath of GPRS Tunneling Protocol (GTP-U)")
Reported-by: Xiao Liang <shaw.leon@gmail.com>
Closes: https://lore.kernel.org/netdev/CABAhCOQdBL6h9M2C+kd+bGivRJ9Q72JUxW+-gur0nub_=PmFPA@mail.gmail.com/
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/gtp.c