Skip to content

Commit

Permalink
net: Fix arg to trace_napi_poll() in netpoll.
Browse files Browse the repository at this point in the history
Reproted by Stephen Rothwell.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed May 22, 2009
1 parent e35ec12 commit 7d18f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/core/netpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static int poll_one_napi(struct netpoll_info *npinfo,
set_bit(NAPI_STATE_NPSVC, &napi->state);

work = napi->poll(napi, budget);
trace_napi_poll(napi->dev);
trace_napi_poll(napi);

clear_bit(NAPI_STATE_NPSVC, &napi->state);
atomic_dec(&trapped);
Expand Down

0 comments on commit 7d18f11

Please sign in to comment.