diff options
author | David S. Miller <davem@davemloft.net> | 2013-10-08 23:07:53 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-08 23:07:53 -0400 |
commit | 53af53ae83fe960ceb9ef74cac7915e9088f4266 (patch) | |
tree | 0cd5309f2a931d3f210aa3d2025aae64f2276e8c /include/linux/netdevice.h | |
parent | b343ca84b4e3ba65508503333c923a797801a588 (diff) | |
parent | 9684d7b0dab3cf3a897edd85dca501d413888d56 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
include/linux/netdevice.h
net/core/sock.c
Trivial merge issues.
Removal of "extern" for functions declaration in netdevice.h
at the same time "const" was added to an argument.
Two parallel line additions in net/core/sock.c
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 6d77e0f3cc10..2e53b44454ad 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -2273,11 +2273,11 @@ static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index) | |||
2273 | } | 2273 | } |
2274 | 2274 | ||
2275 | #ifdef CONFIG_XPS | 2275 | #ifdef CONFIG_XPS |
2276 | int netif_set_xps_queue(struct net_device *dev, struct cpumask *mask, | 2276 | int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask, |
2277 | u16 index); | 2277 | u16 index); |
2278 | #else | 2278 | #else |
2279 | static inline int netif_set_xps_queue(struct net_device *dev, | 2279 | static inline int netif_set_xps_queue(struct net_device *dev, |
2280 | struct cpumask *mask, | 2280 | const struct cpumask *mask, |
2281 | u16 index) | 2281 | u16 index) |
2282 | { | 2282 | { |
2283 | return 0; | 2283 | return 0; |