diff options
author | David S. Miller <davem@davemloft.net> | 2015-04-06 21:52:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-06 22:34:15 -0400 |
commit | c85d6975ef923cffdd56de3e0e6aba0977282cff (patch) | |
tree | cb497deea01827951809c9c7c0f1c22780c146be /net/core/dev.c | |
parent | 60302ff631f0f3eac0ec592e128b776f0676b397 (diff) | |
parent | f22e6e847115abc3a0e2ad7bb18d243d42275af1 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/ethernet/mellanox/mlx4/cmd.c
net/core/fib_rules.c
net/ipv4/fib_frontend.c
The fib_rules.c and fib_frontend.c conflicts were locking adjustments
in 'net' overlapping addition and removal of code in 'net-next'.
The mlx4 conflict was a bug fix in 'net' happening in the same
place a constant was being replaced with a more suitable macro.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 26622d614f81..3b3965288f52 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -2870,7 +2870,9 @@ static void skb_update_prio(struct sk_buff *skb) | |||
2870 | #define skb_update_prio(skb) | 2870 | #define skb_update_prio(skb) |
2871 | #endif | 2871 | #endif |
2872 | 2872 | ||
2873 | static DEFINE_PER_CPU(int, xmit_recursion); | 2873 | DEFINE_PER_CPU(int, xmit_recursion); |
2874 | EXPORT_SYMBOL(xmit_recursion); | ||
2875 | |||
2874 | #define RECURSION_LIMIT 10 | 2876 | #define RECURSION_LIMIT 10 |
2875 | 2877 | ||
2876 | /** | 2878 | /** |