blob: b96832df239ec72ec58690c94ba31f468ae3bad4 [file] [log] [blame]
Eliezer Tamir06021292013-06-10 11:39:50 +03001/*
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03002 * net busy poll support
Eliezer Tamir06021292013-06-10 11:39:50 +03003 * 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
Eliezer Tamir8b80cda2013-07-10 17:13:26 +030024#ifndef _LINUX_NET_BUSY_POLL_H
25#define _LINUX_NET_BUSY_POLL_H
Eliezer Tamir06021292013-06-10 11:39:50 +030026
27#include <linux/netdevice.h>
Ingo Molnare6017572017-02-01 16:36:40 +010028#include <linux/sched/clock.h>
Eliezer Tamir06021292013-06-10 11:39:50 +030029#include <net/ip.h>
30
Cong Wange0d10952013-08-01 11:10:25 +080031#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir06021292013-06-10 11:39:50 +030032
33struct napi_struct;
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030034extern unsigned int sysctl_net_busy_read __read_mostly;
35extern unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +030036
Eliezer Tamircbf55002013-07-08 16:20:34 +030037static inline bool net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030038{
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030039 return sysctl_net_busy_poll;
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030040}
41
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030042static inline u64 busy_loop_us_clock(void)
Eliezer Tamirad6276e2013-06-28 15:59:26 +030043{
Peter Zijlstra37089832013-11-19 16:13:38 +010044 return local_clock() >> 10;
Eliezer Tamirad6276e2013-06-28 15:59:26 +030045}
Eliezer Tamirad6276e2013-06-28 15:59:26 +030046
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030047static inline unsigned long sk_busy_loop_end_time(struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030048{
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030049 return busy_loop_us_clock() + ACCESS_ONCE(sk->sk_ll_usec);
Eliezer Tamir2d48d672013-06-24 10:28:03 +030050}
Eliezer Tamir9a3c71a2013-06-14 16:33:35 +030051
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030052/* in poll/select we use the global sysctl_net_ll_poll value */
53static inline unsigned long busy_loop_end_time(void)
Eliezer Tamir2d48d672013-06-24 10:28:03 +030054{
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030055 return busy_loop_us_clock() + ACCESS_ONCE(sysctl_net_busy_poll);
Eliezer Tamir06021292013-06-10 11:39:50 +030056}
57
Eric Dumazet21cb84c2016-11-15 10:15:12 -080058static inline bool sk_can_busy_loop(const struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030059{
Eric Dumazet21cb84c2016-11-15 10:15:12 -080060 return sk->sk_ll_usec && sk->sk_napi_id && !signal_pending(current);
Eliezer Tamir06021292013-06-10 11:39:50 +030061}
62
Eliezer Tamir1bc27742013-07-02 23:22:47 +030063
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030064static inline bool busy_loop_timeout(unsigned long end_time)
65{
66 unsigned long now = busy_loop_us_clock();
67
68 return time_after(now, end_time);
Eliezer Tamir06021292013-06-10 11:39:50 +030069}
70
Eric Dumazet02d62e82015-11-18 06:30:52 -080071bool sk_busy_loop(struct sock *sk, int nonblock);
Eliezer Tamir06021292013-06-10 11:39:50 +030072
73/* used in the NIC receive handler to mark the skb */
Eliezer Tamir8b80cda2013-07-10 17:13:26 +030074static inline void skb_mark_napi_id(struct sk_buff *skb,
75 struct napi_struct *napi)
Eliezer Tamir06021292013-06-10 11:39:50 +030076{
77 skb->napi_id = napi->napi_id;
78}
79
Eliezer Tamir06021292013-06-10 11:39:50 +030080
Cong Wange0d10952013-08-01 11:10:25 +080081#else /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamircbf55002013-07-08 16:20:34 +030082static inline unsigned long net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030083{
84 return 0;
85}
Eliezer Tamir06021292013-06-10 11:39:50 +030086
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030087static inline unsigned long busy_loop_end_time(void)
Eliezer Tamir06021292013-06-10 11:39:50 +030088{
89 return 0;
90}
91
Eliezer Tamircbf55002013-07-08 16:20:34 +030092static inline bool sk_can_busy_loop(struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030093{
94 return false;
95}
96
Eliezer Tamir8b80cda2013-07-10 17:13:26 +030097static inline void skb_mark_napi_id(struct sk_buff *skb,
98 struct napi_struct *napi)
Eliezer Tamir06021292013-06-10 11:39:50 +030099{
100}
101
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +0300102static inline bool busy_loop_timeout(unsigned long end_time)
Eliezer Tamir06021292013-06-10 11:39:50 +0300103{
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +0300104 return true;
Eliezer Tamir06021292013-06-10 11:39:50 +0300105}
106
Cong Wangdfcefb02013-08-01 11:10:24 +0800107static inline bool sk_busy_loop(struct sock *sk, int nonblock)
108{
109 return false;
110}
111
Cong Wange0d10952013-08-01 11:10:25 +0800112#endif /* CONFIG_NET_RX_BUSY_POLL */
Eric Dumazete68b6e52016-11-16 09:10:42 -0800113
114/* used in the protocol hanlder to propagate the napi_id to the socket */
115static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
116{
117#ifdef CONFIG_NET_RX_BUSY_POLL
118 sk->sk_napi_id = skb->napi_id;
119#endif
120}
121
122/* variant used for unconnected sockets */
123static inline void sk_mark_napi_id_once(struct sock *sk,
124 const struct sk_buff *skb)
125{
126#ifdef CONFIG_NET_RX_BUSY_POLL
127 if (!sk->sk_napi_id)
128 sk->sk_napi_id = skb->napi_id;
129#endif
130}
131
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300132#endif /* _LINUX_NET_BUSY_POLL_H */