diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/memcontrol.h | 2 | ||||
-rw-r--r-- | include/linux/netdevice.h | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 9b296ea41bb8..f944591765eb 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
@@ -390,7 +390,6 @@ enum { | |||
390 | OVER_LIMIT, | 390 | OVER_LIMIT, |
391 | }; | 391 | }; |
392 | 392 | ||
393 | #ifdef CONFIG_INET | ||
394 | struct sock; | 393 | struct sock; |
395 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM | 394 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM |
396 | void sock_update_memcg(struct sock *sk); | 395 | void sock_update_memcg(struct sock *sk); |
@@ -403,6 +402,5 @@ static inline void sock_release_memcg(struct sock *sk) | |||
403 | { | 402 | { |
404 | } | 403 | } |
405 | #endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */ | 404 | #endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */ |
406 | #endif /* CONFIG_INET */ | ||
407 | #endif /* _LINUX_MEMCONTROL_H */ | 405 | #endif /* _LINUX_MEMCONTROL_H */ |
408 | 406 | ||
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 4c06cc0f194b..0eac07c95255 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -2450,6 +2450,11 @@ static inline void netif_addr_lock(struct net_device *dev) | |||
2450 | spin_lock(&dev->addr_list_lock); | 2450 | spin_lock(&dev->addr_list_lock); |
2451 | } | 2451 | } |
2452 | 2452 | ||
2453 | static inline void netif_addr_lock_nested(struct net_device *dev) | ||
2454 | { | ||
2455 | spin_lock_nested(&dev->addr_list_lock, SINGLE_DEPTH_NESTING); | ||
2456 | } | ||
2457 | |||
2453 | static inline void netif_addr_lock_bh(struct net_device *dev) | 2458 | static inline void netif_addr_lock_bh(struct net_device *dev) |
2454 | { | 2459 | { |
2455 | spin_lock_bh(&dev->addr_list_lock); | 2460 | spin_lock_bh(&dev->addr_list_lock); |