diff options
author | Eric Dumazet <edumazet@google.com> | 2021-12-04 20:22:15 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-12-06 16:06:02 -0800 |
commit | 095e200f175f9843642343a4a48087fcfa4d3751 (patch) | |
tree | b2d59a84e4f5d7fb787c053b8c9cc37193238be3 /include | |
parent | 63f13937cbe9b00982dfc8e578b1aec8e5037333 (diff) |
net: failover: add net device refcount tracker
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/failover.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/failover.h b/include/net/failover.h index bb15438f39c7..f2b42b4b9cd6 100644 --- a/include/net/failover.h +++ b/include/net/failover.h @@ -25,6 +25,7 @@ struct failover_ops { struct failover { struct list_head list; struct net_device __rcu *failover_dev; + netdevice_tracker dev_tracker; struct failover_ops __rcu *ops; }; |