diff options
author | Eric Dumazet <edumazet@google.com> | 2021-12-05 07:22:09 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-12-07 03:05:11 +0300 |
commit | 08d622568e5a58adebc8cb801599d3f181a6b687 (patch) | |
tree | 7aa0e61c75323368ca482fe44da9646d565fc22d /include/net/neighbour.h | |
parent | 77a23b1f954381d7999ce069d3fc8658eb6a9bbc (diff) | |
download | linux-08d622568e5a58adebc8cb801599d3f181a6b687.tar.xz |
net: add net device refcount tracker to struct neigh_parms
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/neighbour.h')
-rw-r--r-- | include/net/neighbour.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/neighbour.h b/include/net/neighbour.h index 5fffb783670a..937389e04c8e 100644 --- a/include/net/neighbour.h +++ b/include/net/neighbour.h @@ -70,6 +70,7 @@ enum { struct neigh_parms { possible_net_t net; struct net_device *dev; + netdevice_tracker dev_tracker; struct list_head list; int (*neigh_setup)(struct neighbour *); struct neigh_table *tbl; |