diff options
author | Cong Wang <xiyou.wangcong@gmail.com> | 2020-05-02 22:22:20 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-04 12:05:56 -0700 |
commit | e7511f560f5499c664c1ba9181c76044e2af578d (patch) | |
tree | 2178ea90424ff0805749aa003eeae6557d528799 /include | |
parent | 1a33e10e4a95cb109ff1145098175df3113313ef (diff) | |
download | linux-stable-e7511f560f5499c664c1ba9181c76044e2af578d.tar.gz linux-stable-e7511f560f5499c664c1ba9181c76044e2af578d.tar.bz2 linux-stable-e7511f560f5499c664c1ba9181c76044e2af578d.zip |
bonding: remove useless stats_lock_key
After commit b3e80d44f5b1
("bonding: fix lockdep warning in bond_get_stats()") the dynamic
key is no longer necessary, as we compute nest level at run-time.
So, we can just remove it to save some lockdep key entries.
Test commands:
ip link add bond0 type bond
ip link add bond1 type bond
ip link set bond0 master bond1
ip link set bond0 nomaster
ip link set bond1 master bond0
Reported-and-tested-by: syzbot+aaa6fa4949cc5d9b7b25@syzkaller.appspotmail.com
Cc: Dmitry Vyukov <dvyukov@google.com>
Acked-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bonding.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/bonding.h b/include/net/bonding.h index dc2ce31a1f52..0b696da5c115 100644 --- a/include/net/bonding.h +++ b/include/net/bonding.h @@ -237,7 +237,6 @@ struct bonding { struct dentry *debug_dir; #endif /* CONFIG_DEBUG_FS */ struct rtnl_link_stats64 bond_stats; - struct lock_class_key stats_lock_key; }; #define bond_slave_get_rcu(dev) \ |