blob: d73b849e29a6869e282103f329c3a02f4e1a6882 [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>
28#include <net/ip.h>
29
Cong Wange0d10952013-08-01 11:10:25 +080030#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir06021292013-06-10 11:39:50 +030031
32struct napi_struct;
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030033extern unsigned int sysctl_net_busy_read __read_mostly;
34extern unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +030035
36/* return values from ndo_ll_poll */
37#define LL_FLUSH_FAILED -1
38#define LL_FLUSH_BUSY -2
39
Eliezer Tamircbf55002013-07-08 16:20:34 +030040static inline bool net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030041{
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030042 return sysctl_net_busy_poll;
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030043}
44
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030045static inline u64 busy_loop_us_clock(void)
Eliezer Tamirad6276e2013-06-28 15:59:26 +030046{
Peter Zijlstra37089832013-11-19 16:13:38 +010047 return local_clock() >> 10;
Eliezer Tamirad6276e2013-06-28 15:59:26 +030048}
Eliezer Tamirad6276e2013-06-28 15:59:26 +030049
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030050static inline unsigned long sk_busy_loop_end_time(struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030051{
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030052 return busy_loop_us_clock() + ACCESS_ONCE(sk->sk_ll_usec);
Eliezer Tamir2d48d672013-06-24 10:28:03 +030053}
Eliezer Tamir9a3c71a2013-06-14 16:33:35 +030054
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030055/* in poll/select we use the global sysctl_net_ll_poll value */
56static inline unsigned long busy_loop_end_time(void)
Eliezer Tamir2d48d672013-06-24 10:28:03 +030057{
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030058 return busy_loop_us_clock() + ACCESS_ONCE(sysctl_net_busy_poll);
Eliezer Tamir06021292013-06-10 11:39:50 +030059}
60
Eric Dumazet21cb84c2016-11-15 10:15:12 -080061static inline bool sk_can_busy_loop(const struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030062{
Eric Dumazet21cb84c2016-11-15 10:15:12 -080063 return sk->sk_ll_usec && sk->sk_napi_id && !signal_pending(current);
Eliezer Tamir06021292013-06-10 11:39:50 +030064}
65
Eliezer Tamir1bc27742013-07-02 23:22:47 +030066
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030067static inline bool busy_loop_timeout(unsigned long end_time)
68{
69 unsigned long now = busy_loop_us_clock();
70
71 return time_after(now, end_time);
Eliezer Tamir06021292013-06-10 11:39:50 +030072}
73
Eric Dumazet02d62e82015-11-18 06:30:52 -080074bool sk_busy_loop(struct sock *sk, int nonblock);
Eliezer Tamir06021292013-06-10 11:39:50 +030075
76/* used in the NIC receive handler to mark the skb */
Eliezer Tamir8b80cda2013-07-10 17:13:26 +030077static inline void skb_mark_napi_id(struct sk_buff *skb,
78 struct napi_struct *napi)
Eliezer Tamir06021292013-06-10 11:39:50 +030079{
80 skb->napi_id = napi->napi_id;
81}
82
Eliezer Tamir06021292013-06-10 11:39:50 +030083
Cong Wange0d10952013-08-01 11:10:25 +080084#else /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamircbf55002013-07-08 16:20:34 +030085static inline unsigned long net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030086{
87 return 0;
88}
Eliezer Tamir06021292013-06-10 11:39:50 +030089
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +030090static inline unsigned long busy_loop_end_time(void)
Eliezer Tamir06021292013-06-10 11:39:50 +030091{
92 return 0;
93}
94
Eliezer Tamircbf55002013-07-08 16:20:34 +030095static inline bool sk_can_busy_loop(struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030096{
97 return false;
98}
99
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300100static inline void skb_mark_napi_id(struct sk_buff *skb,
101 struct napi_struct *napi)
Eliezer Tamir06021292013-06-10 11:39:50 +0300102{
103}
104
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +0300105static inline bool busy_loop_timeout(unsigned long end_time)
Eliezer Tamir06021292013-06-10 11:39:50 +0300106{
Eliezer Tamir76b1e9b2013-07-09 13:09:21 +0300107 return true;
Eliezer Tamir06021292013-06-10 11:39:50 +0300108}
109
Cong Wangdfcefb02013-08-01 11:10:24 +0800110static inline bool sk_busy_loop(struct sock *sk, int nonblock)
111{
112 return false;
113}
114
Cong Wange0d10952013-08-01 11:10:25 +0800115#endif /* CONFIG_NET_RX_BUSY_POLL */
Eric Dumazete68b6e52016-11-16 09:10:42 -0800116
117/* used in the protocol hanlder to propagate the napi_id to the socket */
118static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
119{
120#ifdef CONFIG_NET_RX_BUSY_POLL
121 sk->sk_napi_id = skb->napi_id;
122#endif
123}
124
125/* variant used for unconnected sockets */
126static inline void sk_mark_napi_id_once(struct sock *sk,
127 const struct sk_buff *skb)
128{
129#ifdef CONFIG_NET_RX_BUSY_POLL
130 if (!sk->sk_napi_id)
131 sk->sk_napi_id = skb->napi_id;
132#endif
133}
134
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300135#endif /* _LINUX_NET_BUSY_POLL_H */