diff options
author | Eliezer Tamir <eliezer.tamir@linux.intel.com> | 2013-07-10 17:13:26 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-07-10 17:08:27 -0700 |
commit | 8b80cda536ea9bceec0364e897868a30ee13b992 (patch) | |
tree | 75edd97f04e379e6afedd67beef81eb80ba0adaf /net/ipv4/tcp_ipv4.c | |
parent | 076bb0c82a44fbe46fe2c8527a5b5b64b69f679d (diff) | |
download | linux-8b80cda536ea9bceec0364e897868a30ee13b992.tar.gz linux-8b80cda536ea9bceec0364e897868a30ee13b992.tar.bz2 linux-8b80cda536ea9bceec0364e897868a30ee13b992.zip |
net: rename ll methods to busy-poll
Rename ndo_ll_poll to ndo_busy_poll.
Rename sk_mark_ll to sk_mark_napi_id.
Rename skb_mark_ll to skb_mark_napi_id.
Correct all useres of these functions.
Update comments and defines in include/net/busy_poll.h
Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 3a261b41a00c..b299da5ff499 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1994,7 +1994,7 @@ process: if (sk_filter(sk, skb)) goto discard_and_relse; - sk_mark_ll(sk, skb); + sk_mark_napi_id(sk, skb); skb->dev = NULL; bh_lock_sock_nested(sk); |