mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 05:36:24 +00:00
net: Fix arg to trace_napi_poll() in netpoll.
Reproted by Stephen Rothwell. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e35ec12650
commit
7d18f11489
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ static int poll_one_napi(struct netpoll_info *npinfo,
|
||||||
set_bit(NAPI_STATE_NPSVC, &napi->state);
|
set_bit(NAPI_STATE_NPSVC, &napi->state);
|
||||||
|
|
||||||
work = napi->poll(napi, budget);
|
work = napi->poll(napi, budget);
|
||||||
trace_napi_poll(napi->dev);
|
trace_napi_poll(napi);
|
||||||
|
|
||||||
clear_bit(NAPI_STATE_NPSVC, &napi->state);
|
clear_bit(NAPI_STATE_NPSVC, &napi->state);
|
||||||
atomic_dec(&trapped);
|
atomic_dec(&trapped);
|
||||||
|
|
Loading…
Reference in a new issue