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/ipv6/udp.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/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 40e72034da07..f4058150262b 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -844,7 +844,7 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, if (sk != NULL) { int ret; - sk_mark_ll(sk, skb); + sk_mark_napi_id(sk, skb); ret = udpv6_queue_rcv_skb(sk, skb); sock_put(sk); |