diff options
| author | Christoph Lameter <[email protected]> | 2014-08-17 17:30:35 +0000 |
|---|---|---|
| committer | Tejun Heo <[email protected]> | 2014-08-26 17:45:47 +0000 |
| commit | 903ceff7ca7b4d80c083a80ee5163b74e9fa359f (patch) | |
| tree | 60c82f70f9d58720042bb3249eb6fa9f89fe9025 /net/ipv4/tcp_output.c | |
| parent | watchdog: Replace __raw_get_cpu_var uses (diff) | |
| download | kernel-903ceff7ca7b4d80c083a80ee5163b74e9fa359f.tar.gz kernel-903ceff7ca7b4d80c083a80ee5163b74e9fa359f.zip | |
net: Replace get_cpu_var through this_cpu_ptr
Replace uses of get_cpu_var for address calculation through this_cpu_ptr.
Cc: [email protected]
Cc: Eric Dumazet <[email protected]>
Acked-by: David S. Miller <[email protected]>
Signed-off-by: Christoph Lameter <[email protected]>
Signed-off-by: Tejun Heo <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_output.c')
| -rw-r--r-- | net/ipv4/tcp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 5a7c41fbc6d3..d145f7ef78f3 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -842,7 +842,7 @@ void tcp_wfree(struct sk_buff *skb) /* queue this socket to tasklet queue */ local_irq_save(flags); - tsq = &__get_cpu_var(tsq_tasklet); + tsq = this_cpu_ptr(&tsq_tasklet); list_add(&tp->tsq_node, &tsq->head); tasklet_schedule(&tsq->tasklet); local_irq_restore(flags); |
