All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 net-next 00/15] neighbour: Convert RTM_GETNEIGH to RCU and make pneigh RTNL-free.
@ 2025-07-16 22:08 Kuniyuki Iwashima
  2025-07-16 22:08 ` [PATCH v3 net-next 01/15] neighbour: Make neigh_valid_get_req() return ndmsg Kuniyuki Iwashima
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Kuniyuki Iwashima @ 2025-07-16 22:08 UTC (permalink / raw)
  To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	David Ahern
  Cc: Simon Horman, Kuniyuki Iwashima, Kuniyuki Iwashima, netdev

This is kind of v3 of the series below [0] but without NEIGHTBL patches.

Patch 1 ~ 4 and 9 come from the series to convert RTM_GETNEIGH to RCU.

Other patches clean up pneigh_lookup() and convert the pneigh code to
RCU + private mutex so that we can easily remove RTNL from RTM_NEWNEIGH
in the later series.

[0]: https://lore.kernel.org/netdev/20250418012727.57033-1-kuniyu@amazon.com/


Changes:
  v3:
    * Patch 1:
      * Return ERR_PTR() direclty instead of goto in neigh_valid_get_req().
    * Patch 2:
      * Use NL_SET_ERR_ATTR_MISS() for NDA_DST
    * Patch 3:
      * Rename err label to err_free_skb
    * Patch 8:
      * Cache pn->protocol in pneigh_fill_info()
    * Patch 9:
      * Rename err label to err_unlock

  v2: https://lore.kernel.org/netdev/20250712203515.4099110-1-kuniyu@google.com/
    * Add patch 6 to silence Sparse __rcu warning

  v1: https://lore.kernel.org/netdev/20250711191007.3591938-1-kuniyu@google.com/


Kuniyuki Iwashima (15):
  neighbour: Make neigh_valid_get_req() return ndmsg.
  neighbour: Move two validations from neigh_get() to
    neigh_valid_get_req().
  neighbour: Allocate skb in neigh_get().
  neighbour: Move neigh_find_table() to neigh_get().
  neighbour: Split pneigh_lookup().
  neighbour: Annotate neigh_table.phash_buckets and pneigh_entry.next
    with __rcu.
  neighbour: Free pneigh_entry after RCU grace period.
  neighbour: Annotate access to struct pneigh_entry.{flags,protocol}.
  neighbour: Convert RTM_GETNEIGH to RCU.
  neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_dump_table().
  neighbour: Use rcu_dereference() in pneigh_get_{first,next}().
  neighbour: Remove __pneigh_lookup().
  neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_lookup().
  neighbour: Protect tbl->phash_buckets[] with a dedicated mutex.
  neighbour: Update pneigh_entry in pneigh_create().

 include/net/neighbour.h |  17 +-
 net/core/neighbour.c    | 384 ++++++++++++++++++++--------------------
 net/ipv4/arp.c          |   6 +-
 net/ipv6/ip6_output.c   |   2 +-
 net/ipv6/ndisc.c        |   8 +-
 5 files changed, 207 insertions(+), 210 deletions(-)

-- 
2.50.0.727.gbf7dc18ff4-goog


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-07-17 23:50 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-16 22:08 [PATCH v3 net-next 00/15] neighbour: Convert RTM_GETNEIGH to RCU and make pneigh RTNL-free Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 01/15] neighbour: Make neigh_valid_get_req() return ndmsg Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 02/15] neighbour: Move two validations from neigh_get() to neigh_valid_get_req() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 03/15] neighbour: Allocate skb in neigh_get() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 04/15] neighbour: Move neigh_find_table() to neigh_get() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 05/15] neighbour: Split pneigh_lookup() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 06/15] neighbour: Annotate neigh_table.phash_buckets and pneigh_entry.next with __rcu Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 07/15] neighbour: Free pneigh_entry after RCU grace period Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 08/15] neighbour: Annotate access to struct pneigh_entry.{flags,protocol} Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 09/15] neighbour: Convert RTM_GETNEIGH to RCU Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 10/15] neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_dump_table() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 11/15] neighbour: Use rcu_dereference() in pneigh_get_{first,next}() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 12/15] neighbour: Remove __pneigh_lookup() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 13/15] neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_lookup() Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 14/15] neighbour: Protect tbl->phash_buckets[] with a dedicated mutex Kuniyuki Iwashima
2025-07-16 22:08 ` [PATCH v3 net-next 15/15] neighbour: Update pneigh_entry in pneigh_create() Kuniyuki Iwashima
2025-07-17 23:50 ` [PATCH v3 net-next 00/15] neighbour: Convert RTM_GETNEIGH to RCU and make pneigh RTNL-free patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.