Message ID | 20241207162248.18536-4-edumazet@google.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: prepare for removal of net->dev_index_head | expand |
On Sat, Dec 07, 2024 at 04:22:48PM +0000, Eric Dumazet wrote: > I chose to remove this field in a separate patch to ease > potential bisection, in case one ndo_fdb_dump() is still > using the old way (cb->args[2] instead of ctx->fdb_idx) > > Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: Ido Schimmel <idosch@nvidia.com>
From: Eric Dumazet <edumazet@google.com> Date: Sat, 7 Dec 2024 16:22:48 +0000 > I chose to remove this field in a separate patch to ease > potential bisection, in case one ndo_fdb_dump() is still > using the old way (cb->args[2] instead of ctx->fdb_idx) > > Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index 2b17d7eebd92342e472b9eb3b2ade84bc8ae2e94..af668b79eb757c86970b2455d9d820c902699a13 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h @@ -181,7 +181,6 @@ void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail); /* Shared by rtnl_fdb_dump() and various ndo_fdb_dump() helpers. */ struct ndo_fdb_dump_context { unsigned long ifindex; - unsigned long pad; unsigned long fdb_idx; };
I chose to remove this field in a separate patch to ease potential bisection, in case one ndo_fdb_dump() is still using the old way (cb->args[2] instead of ctx->fdb_idx) Signed-off-by: Eric Dumazet <edumazet@google.com> --- include/linux/rtnetlink.h | 1 - 1 file changed, 1 deletion(-)