]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/net/busy_poll.h
net: Track start of busy loop instead of when it should end
[mirror_ubuntu-artful-kernel.git] / include / net / busy_poll.h
CommitLineData
06021292 1/*
8b80cda5 2 * net busy poll support
06021292
ET
3 * Copyright(c) 2013 Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * Author: Eliezer Tamir
19 *
20 * Contact Information:
21 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
22 */
23
8b80cda5
ET
24#ifndef _LINUX_NET_BUSY_POLL_H
25#define _LINUX_NET_BUSY_POLL_H
06021292
ET
26
27#include <linux/netdevice.h>
e6017571 28#include <linux/sched/clock.h>
174cd4b1 29#include <linux/sched/signal.h>
06021292
ET
30#include <net/ip.h>
31
e0d1095a 32#ifdef CONFIG_NET_RX_BUSY_POLL
06021292
ET
33
34struct napi_struct;
64b0dc51
ET
35extern unsigned int sysctl_net_busy_read __read_mostly;
36extern unsigned int sysctl_net_busy_poll __read_mostly;
06021292 37
545cd5e5
AD
38/* 0 - Reserved to indicate value not set
39 * 1..NR_CPUS - Reserved for sender_cpu
40 * NR_CPUS+1..~0 - Region available for NAPI IDs
41 */
42#define MIN_NAPI_ID ((unsigned int)(NR_CPUS + 1))
43
cbf55001 44static inline bool net_busy_loop_on(void)
91e2fd33 45{
64b0dc51 46 return sysctl_net_busy_poll;
91e2fd33
ET
47}
48
37056719 49static inline bool sk_can_busy_loop(const struct sock *sk)
ad6276e0 50{
37056719 51 return sk->sk_ll_usec && !signal_pending(current);
ad6276e0 52}
ad6276e0 53
37056719 54void sk_busy_loop(struct sock *sk, int nonblock);
9a3c71aa 55
37056719
AD
56#else /* CONFIG_NET_RX_BUSY_POLL */
57static inline unsigned long net_busy_loop_on(void)
1bc2774d 58{
37056719 59 return 0;
06021292
ET
60}
61
37056719 62static inline bool sk_can_busy_loop(struct sock *sk)
06021292 63{
37056719 64 return false;
06021292
ET
65}
66
37056719 67static inline void sk_busy_loop(struct sock *sk, int nonblock)
06021292 68{
06021292
ET
69}
70
37056719 71#endif /* CONFIG_NET_RX_BUSY_POLL */
06021292 72
37056719 73static inline unsigned long busy_loop_current_time(void)
91e2fd33 74{
37056719
AD
75#ifdef CONFIG_NET_RX_BUSY_POLL
76 return (unsigned long)(local_clock() >> 10);
77#else
91e2fd33 78 return 0;
37056719 79#endif
91e2fd33 80}
06021292 81
37056719
AD
82/* in poll/select we use the global sysctl_net_ll_poll value */
83static inline bool busy_loop_timeout(unsigned long start_time)
06021292 84{
37056719
AD
85#ifdef CONFIG_NET_RX_BUSY_POLL
86 unsigned long bp_usec = READ_ONCE(sysctl_net_busy_poll);
06021292 87
37056719
AD
88 if (bp_usec) {
89 unsigned long end_time = start_time + bp_usec;
90 unsigned long now = busy_loop_current_time();
06021292 91
37056719
AD
92 return time_after(now, end_time);
93 }
94#endif
76b1e9b9 95 return true;
06021292
ET
96}
97
37056719
AD
98static inline bool sk_busy_loop_timeout(struct sock *sk,
99 unsigned long start_time)
dfcefb0b 100{
37056719
AD
101#ifdef CONFIG_NET_RX_BUSY_POLL
102 unsigned long bp_usec = READ_ONCE(sk->sk_ll_usec);
dfcefb0b 103
37056719
AD
104 if (bp_usec) {
105 unsigned long end_time = start_time + bp_usec;
106 unsigned long now = busy_loop_current_time();
107
108 return time_after(now, end_time);
109 }
110#endif
111 return true;
112}
e68b6e50 113
d2e64dbb
AD
114/* used in the NIC receive handler to mark the skb */
115static inline void skb_mark_napi_id(struct sk_buff *skb,
116 struct napi_struct *napi)
117{
118#ifdef CONFIG_NET_RX_BUSY_POLL
119 skb->napi_id = napi->napi_id;
120#endif
121}
122
e68b6e50
ED
123/* used in the protocol hanlder to propagate the napi_id to the socket */
124static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
125{
126#ifdef CONFIG_NET_RX_BUSY_POLL
127 sk->sk_napi_id = skb->napi_id;
128#endif
129}
130
131/* variant used for unconnected sockets */
132static inline void sk_mark_napi_id_once(struct sock *sk,
133 const struct sk_buff *skb)
134{
135#ifdef CONFIG_NET_RX_BUSY_POLL
136 if (!sk->sk_napi_id)
137 sk->sk_napi_id = skb->napi_id;
138#endif
139}
140
8b80cda5 141#endif /* _LINUX_NET_BUSY_POLL_H */