diff options
author | Eliezer Tamir <eliezer.tamir@linux.intel.com> | 2013-07-10 10:13:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-07-10 20:08:27 -0400 |
commit | 8b80cda536ea9bceec0364e897868a30ee13b992 (patch) | |
tree | 75edd97f04e379e6afedd67beef81eb80ba0adaf | |
parent | 076bb0c82a44fbe46fe2c8527a5b5b64b69f679d (diff) |
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>
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 4 | ||||
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/en_netdev.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/en_rx.c | 2 | ||||
-rw-r--r-- | include/linux/netdevice.h | 2 | ||||
-rw-r--r-- | include/net/busy_poll.h | 22 | ||||
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 | ||||
-rw-r--r-- | net/ipv4/udp.c | 2 | ||||
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 | ||||
-rw-r--r-- | net/ipv6/udp.c | 2 |
11 files changed, 23 insertions, 21 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c index 05b6b4e8b073..3353efe79194 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c | |||
@@ -990,7 +990,7 @@ reuse_rx: | |||
990 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), | 990 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), |
991 | le16_to_cpu(cqe_fp->vlan_tag)); | 991 | le16_to_cpu(cqe_fp->vlan_tag)); |
992 | 992 | ||
993 | skb_mark_ll(skb, &fp->napi); | 993 | skb_mark_napi_id(skb, &fp->napi); |
994 | 994 | ||
995 | if (bnx2x_fp_ll_polling(fp)) | 995 | if (bnx2x_fp_ll_polling(fp)) |
996 | netif_receive_skb(skb); | 996 | netif_receive_skb(skb); |
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c index 15a528bda87c..e5da07858a2f 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | |||
@@ -12027,7 +12027,7 @@ static const struct net_device_ops bnx2x_netdev_ops = { | |||
12027 | #endif | 12027 | #endif |
12028 | 12028 | ||
12029 | #ifdef CONFIG_NET_LL_RX_POLL | 12029 | #ifdef CONFIG_NET_LL_RX_POLL |
12030 | .ndo_ll_poll = bnx2x_low_latency_recv, | 12030 | .ndo_busy_poll = bnx2x_low_latency_recv, |
12031 | #endif | 12031 | #endif |
12032 | }; | 12032 | }; |
12033 | 12033 | ||
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c index 047ebaaf0141..bad8f14b1941 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | |||
@@ -1978,7 +1978,7 @@ static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector, | |||
1978 | } | 1978 | } |
1979 | 1979 | ||
1980 | #endif /* IXGBE_FCOE */ | 1980 | #endif /* IXGBE_FCOE */ |
1981 | skb_mark_ll(skb, &q_vector->napi); | 1981 | skb_mark_napi_id(skb, &q_vector->napi); |
1982 | ixgbe_rx_skb(q_vector, skb); | 1982 | ixgbe_rx_skb(q_vector, skb); |
1983 | 1983 | ||
1984 | /* update budget accounting */ | 1984 | /* update budget accounting */ |
@@ -7228,7 +7228,7 @@ static const struct net_device_ops ixgbe_netdev_ops = { | |||
7228 | .ndo_poll_controller = ixgbe_netpoll, | 7228 | .ndo_poll_controller = ixgbe_netpoll, |
7229 | #endif | 7229 | #endif |
7230 | #ifdef CONFIG_NET_LL_RX_POLL | 7230 | #ifdef CONFIG_NET_LL_RX_POLL |
7231 | .ndo_ll_poll = ixgbe_low_latency_recv, | 7231 | .ndo_busy_poll = ixgbe_low_latency_recv, |
7232 | #endif | 7232 | #endif |
7233 | #ifdef IXGBE_FCOE | 7233 | #ifdef IXGBE_FCOE |
7234 | .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get, | 7234 | .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get, |
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c index 0fb2438dc2c7..5eac871399d8 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c | |||
@@ -2141,7 +2141,7 @@ static const struct net_device_ops mlx4_netdev_ops = { | |||
2141 | .ndo_rx_flow_steer = mlx4_en_filter_rfs, | 2141 | .ndo_rx_flow_steer = mlx4_en_filter_rfs, |
2142 | #endif | 2142 | #endif |
2143 | #ifdef CONFIG_NET_LL_RX_POLL | 2143 | #ifdef CONFIG_NET_LL_RX_POLL |
2144 | .ndo_ll_poll = mlx4_en_low_latency_recv, | 2144 | .ndo_busy_poll = mlx4_en_low_latency_recv, |
2145 | #endif | 2145 | #endif |
2146 | }; | 2146 | }; |
2147 | 2147 | ||
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_rx.c b/drivers/net/ethernet/mellanox/mlx4/en_rx.c index 90746d37ac9b..dec455c8f627 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_rx.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_rx.c | |||
@@ -767,7 +767,7 @@ int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int bud | |||
767 | timestamp); | 767 | timestamp); |
768 | } | 768 | } |
769 | 769 | ||
770 | skb_mark_ll(skb, &cq->napi); | 770 | skb_mark_napi_id(skb, &cq->napi); |
771 | 771 | ||
772 | /* Push it up the stack */ | 772 | /* Push it up the stack */ |
773 | netif_receive_skb(skb); | 773 | netif_receive_skb(skb); |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index bb82871b8494..0741a1e919a5 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -974,7 +974,7 @@ struct net_device_ops { | |||
974 | void (*ndo_netpoll_cleanup)(struct net_device *dev); | 974 | void (*ndo_netpoll_cleanup)(struct net_device *dev); |
975 | #endif | 975 | #endif |
976 | #ifdef CONFIG_NET_LL_RX_POLL | 976 | #ifdef CONFIG_NET_LL_RX_POLL |
977 | int (*ndo_ll_poll)(struct napi_struct *dev); | 977 | int (*ndo_busy_poll)(struct napi_struct *dev); |
978 | #endif | 978 | #endif |
979 | int (*ndo_set_vf_mac)(struct net_device *dev, | 979 | int (*ndo_set_vf_mac)(struct net_device *dev, |
980 | int queue, u8 *mac); | 980 | int queue, u8 *mac); |
diff --git a/include/net/busy_poll.h b/include/net/busy_poll.h index 76f034087743..4ff71908fd42 100644 --- a/include/net/busy_poll.h +++ b/include/net/busy_poll.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Low Latency Sockets | 2 | * net busy poll support |
3 | * Copyright(c) 2013 Intel Corporation. | 3 | * Copyright(c) 2013 Intel Corporation. |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify it | 5 | * This program is free software; you can redistribute it and/or modify it |
@@ -21,8 +21,8 @@ | |||
21 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | 21 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #ifndef _LINUX_NET_LL_POLL_H | 24 | #ifndef _LINUX_NET_BUSY_POLL_H |
25 | #define _LINUX_NET_LL_POLL_H | 25 | #define _LINUX_NET_BUSY_POLL_H |
26 | 26 | ||
27 | #include <linux/netdevice.h> | 27 | #include <linux/netdevice.h> |
28 | #include <net/ip.h> | 28 | #include <net/ip.h> |
@@ -110,11 +110,11 @@ static inline bool sk_busy_loop(struct sock *sk, int nonblock) | |||
110 | goto out; | 110 | goto out; |
111 | 111 | ||
112 | ops = napi->dev->netdev_ops; | 112 | ops = napi->dev->netdev_ops; |
113 | if (!ops->ndo_ll_poll) | 113 | if (!ops->ndo_busy_poll) |
114 | goto out; | 114 | goto out; |
115 | 115 | ||
116 | do { | 116 | do { |
117 | rc = ops->ndo_ll_poll(napi); | 117 | rc = ops->ndo_busy_poll(napi); |
118 | 118 | ||
119 | if (rc == LL_FLUSH_FAILED) | 119 | if (rc == LL_FLUSH_FAILED) |
120 | break; /* permanent failure */ | 120 | break; /* permanent failure */ |
@@ -134,13 +134,14 @@ out: | |||
134 | } | 134 | } |
135 | 135 | ||
136 | /* used in the NIC receive handler to mark the skb */ | 136 | /* used in the NIC receive handler to mark the skb */ |
137 | static inline void skb_mark_ll(struct sk_buff *skb, struct napi_struct *napi) | 137 | static inline void skb_mark_napi_id(struct sk_buff *skb, |
138 | struct napi_struct *napi) | ||
138 | { | 139 | { |
139 | skb->napi_id = napi->napi_id; | 140 | skb->napi_id = napi->napi_id; |
140 | } | 141 | } |
141 | 142 | ||
142 | /* used in the protocol hanlder to propagate the napi_id to the socket */ | 143 | /* used in the protocol hanlder to propagate the napi_id to the socket */ |
143 | static inline void sk_mark_ll(struct sock *sk, struct sk_buff *skb) | 144 | static inline void sk_mark_napi_id(struct sock *sk, struct sk_buff *skb) |
144 | { | 145 | { |
145 | sk->sk_napi_id = skb->napi_id; | 146 | sk->sk_napi_id = skb->napi_id; |
146 | } | 147 | } |
@@ -166,11 +167,12 @@ static inline bool sk_busy_poll(struct sock *sk, int nonblock) | |||
166 | return false; | 167 | return false; |
167 | } | 168 | } |
168 | 169 | ||
169 | static inline void skb_mark_ll(struct sk_buff *skb, struct napi_struct *napi) | 170 | static inline void skb_mark_napi_id(struct sk_buff *skb, |
171 | struct napi_struct *napi) | ||
170 | { | 172 | { |
171 | } | 173 | } |
172 | 174 | ||
173 | static inline void sk_mark_ll(struct sock *sk, struct sk_buff *skb) | 175 | static inline void sk_mark_napi_id(struct sock *sk, struct sk_buff *skb) |
174 | { | 176 | { |
175 | } | 177 | } |
176 | 178 | ||
@@ -180,4 +182,4 @@ static inline bool busy_loop_timeout(unsigned long end_time) | |||
180 | } | 182 | } |
181 | 183 | ||
182 | #endif /* CONFIG_NET_LL_RX_POLL */ | 184 | #endif /* CONFIG_NET_LL_RX_POLL */ |
183 | #endif /* _LINUX_NET_LL_POLL_H */ | 185 | #endif /* _LINUX_NET_BUSY_POLL_H */ |
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: | |||
1994 | if (sk_filter(sk, skb)) | 1994 | if (sk_filter(sk, skb)) |
1995 | goto discard_and_relse; | 1995 | goto discard_and_relse; |
1996 | 1996 | ||
1997 | sk_mark_ll(sk, skb); | 1997 | sk_mark_napi_id(sk, skb); |
1998 | skb->dev = NULL; | 1998 | skb->dev = NULL; |
1999 | 1999 | ||
2000 | bh_lock_sock_nested(sk); | 2000 | bh_lock_sock_nested(sk); |
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index bcc0ff2c16da..a0d7151ffbd9 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
@@ -1713,7 +1713,7 @@ int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, | |||
1713 | if (sk != NULL) { | 1713 | if (sk != NULL) { |
1714 | int ret; | 1714 | int ret; |
1715 | 1715 | ||
1716 | sk_mark_ll(sk, skb); | 1716 | sk_mark_napi_id(sk, skb); |
1717 | ret = udp_queue_rcv_skb(sk, skb); | 1717 | ret = udp_queue_rcv_skb(sk, skb); |
1718 | sock_put(sk); | 1718 | sock_put(sk); |
1719 | 1719 | ||
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 345bd92d4ddb..6e1649d58533 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1499,7 +1499,7 @@ process: | |||
1499 | if (sk_filter(sk, skb)) | 1499 | if (sk_filter(sk, skb)) |
1500 | goto discard_and_relse; | 1500 | goto discard_and_relse; |
1501 | 1501 | ||
1502 | sk_mark_ll(sk, skb); | 1502 | sk_mark_napi_id(sk, skb); |
1503 | skb->dev = NULL; | 1503 | skb->dev = NULL; |
1504 | 1504 | ||
1505 | bh_lock_sock_nested(sk); | 1505 | bh_lock_sock_nested(sk); |
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, | |||
844 | if (sk != NULL) { | 844 | if (sk != NULL) { |
845 | int ret; | 845 | int ret; |
846 | 846 | ||
847 | sk_mark_ll(sk, skb); | 847 | sk_mark_napi_id(sk, skb); |
848 | ret = udpv6_queue_rcv_skb(sk, skb); | 848 | ret = udpv6_queue_rcv_skb(sk, skb); |
849 | sock_put(sk); | 849 | sock_put(sk); |
850 | 850 | ||