diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-07-19 06:48:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-19 18:12:51 -0400 |
commit | d6d9ca0fec6aea0f2e4064474a1c5cdbed873c63 (patch) | |
tree | 0dcf812c45daf1c79087fc1ac365dcbce2485608 /net/sched | |
parent | 492c5d943d6a04b124ba3a719dc746dc36b14cfb (diff) |
net: this_cpu_xxx conversions
Use modern this_cpu_xxx() api, saving few bytes on x86
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c index d20fcd2a5519..2aeb3a4386a1 100644 --- a/net/sched/sch_generic.c +++ b/net/sched/sch_generic.c | |||
@@ -96,7 +96,7 @@ static inline int handle_dev_cpu_collision(struct sk_buff *skb, | |||
96 | * Another cpu is holding lock, requeue & delay xmits for | 96 | * Another cpu is holding lock, requeue & delay xmits for |
97 | * some time. | 97 | * some time. |
98 | */ | 98 | */ |
99 | __get_cpu_var(softnet_data).cpu_collision++; | 99 | __this_cpu_inc(softnet_data.cpu_collision); |
100 | ret = dev_requeue_skb(skb, q); | 100 | ret = dev_requeue_skb(skb, q); |
101 | } | 101 | } |
102 | 102 | ||