diff options
author | David S. Miller <davem@davemloft.net> | 2013-12-20 04:23:54 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-20 04:23:54 +0400 |
commit | b1aca94efa566551e3ea5ed6ee4adc068ae86d1c (patch) | |
tree | 703dc5dc03ed86e3a266ff86d88861d076928639 /include | |
parent | 1a1f20bc9debd133549d5b289bd5494a4264a73d (diff) | |
parent | 8f48f5bc759d6f945ff0c3b2bf2a1d5971e561ba (diff) | |
download | linux-b1aca94efa566551e3ea5ed6ee4adc068ae86d1c.tar.xz |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net
Jeff Kirsher says:
====================
Intel Wired LAN Driver Updates
This series contains updates to net, ixgbe and e1000e.
David provides compiler fixes for e1000e.
Don provides a fix for ixgbe to resolve a compile warning.
John provides a fix to net where it is useful to be able to walk all
upper devices when bringing a device online where the RTNL lock is held.
In this case, it is safe to walk the all_adj_list because the RTNL lock is
used to protect the write side as well. This patch adds a check to see
if the RTNL lock is held before throwing a warning in
netdev_all_upper_get_next_dev_rcu().
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/rtnetlink.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index 939428ad25ac..8e3e66ac0a52 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h @@ -24,6 +24,11 @@ extern int rtnl_trylock(void); extern int rtnl_is_locked(void); #ifdef CONFIG_PROVE_LOCKING extern int lockdep_rtnl_is_held(void); +#else +static inline int lockdep_rtnl_is_held(void) +{ + return 1; +} #endif /* #ifdef CONFIG_PROVE_LOCKING */ /** |