blob: 0292b8353d7e99b11ca012e13794180484c7a413 [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Eliezer Tamir06021292013-06-10 11:39:50 +03002/*
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03003 * net busy poll support
Eliezer Tamir06021292013-06-10 11:39:50 +03004 * Copyright(c) 2013 Intel Corporation.
5 *
Eliezer Tamir06021292013-06-10 11:39:50 +03006 * Author: Eliezer Tamir
7 *
8 * Contact Information:
9 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
10 */
11
Eliezer Tamir8b80cda2013-07-10 17:13:26 +030012#ifndef _LINUX_NET_BUSY_POLL_H
13#define _LINUX_NET_BUSY_POLL_H
Eliezer Tamir06021292013-06-10 11:39:50 +030014
15#include <linux/netdevice.h>
Ingo Molnare6017572017-02-01 16:36:40 +010016#include <linux/sched/clock.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010017#include <linux/sched/signal.h>
Eliezer Tamir06021292013-06-10 11:39:50 +030018#include <net/ip.h>
19
Alexander Duyck545cd5e2017-03-24 10:07:53 -070020/* 0 - Reserved to indicate value not set
21 * 1..NR_CPUS - Reserved for sender_cpu
22 * NR_CPUS+1..~0 - Region available for NAPI IDs
23 */
24#define MIN_NAPI_ID ((unsigned int)(NR_CPUS + 1))
25
Daniel Borkmanne4dde412017-08-11 18:31:24 +020026#ifdef CONFIG_NET_RX_BUSY_POLL
27
28struct napi_struct;
29extern unsigned int sysctl_net_busy_read __read_mostly;
30extern unsigned int sysctl_net_busy_poll __read_mostly;
31
Eliezer Tamircbf55002013-07-08 16:20:34 +030032static inline bool net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030033{
Eliezer Tamir64b0dc52013-07-10 17:13:36 +030034 return sysctl_net_busy_poll;
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030035}
36
Eric Dumazet21cb84c2016-11-15 10:15:12 -080037static inline bool sk_can_busy_loop(const struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030038{
Alexander Duyck545cd5e2017-03-24 10:07:53 -070039 return sk->sk_ll_usec && !signal_pending(current);
Eliezer Tamir06021292013-06-10 11:39:50 +030040}
41
Sridhar Samudrala7db6b042017-03-24 10:08:24 -070042bool sk_busy_loop_end(void *p, unsigned long start_time);
43
44void napi_busy_loop(unsigned int napi_id,
45 bool (*loop_end)(void *, unsigned long),
Björn Töpel7fd32532020-11-30 19:51:56 +010046 void *loop_end_arg, bool prefer_busy_poll);
Eliezer Tamir06021292013-06-10 11:39:50 +030047
Cong Wange0d10952013-08-01 11:10:25 +080048#else /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamircbf55002013-07-08 16:20:34 +030049static inline unsigned long net_busy_loop_on(void)
Eliezer Tamir91e2fd332013-06-28 15:59:35 +030050{
51 return 0;
52}
Eliezer Tamir06021292013-06-10 11:39:50 +030053
Eliezer Tamircbf55002013-07-08 16:20:34 +030054static inline bool sk_can_busy_loop(struct sock *sk)
Eliezer Tamir06021292013-06-10 11:39:50 +030055{
56 return false;
57}
58
Cong Wange0d10952013-08-01 11:10:25 +080059#endif /* CONFIG_NET_RX_BUSY_POLL */
Eric Dumazete68b6e52016-11-16 09:10:42 -080060
Alexander Duyck37056712017-03-24 10:08:18 -070061static inline unsigned long busy_loop_current_time(void)
62{
63#ifdef CONFIG_NET_RX_BUSY_POLL
64 return (unsigned long)(local_clock() >> 10);
65#else
66 return 0;
67#endif
68}
69
70/* in poll/select we use the global sysctl_net_ll_poll value */
71static inline bool busy_loop_timeout(unsigned long start_time)
72{
73#ifdef CONFIG_NET_RX_BUSY_POLL
74 unsigned long bp_usec = READ_ONCE(sysctl_net_busy_poll);
75
76 if (bp_usec) {
77 unsigned long end_time = start_time + bp_usec;
78 unsigned long now = busy_loop_current_time();
79
80 return time_after(now, end_time);
81 }
82#endif
83 return true;
84}
85
86static inline bool sk_busy_loop_timeout(struct sock *sk,
87 unsigned long start_time)
88{
89#ifdef CONFIG_NET_RX_BUSY_POLL
90 unsigned long bp_usec = READ_ONCE(sk->sk_ll_usec);
91
92 if (bp_usec) {
93 unsigned long end_time = start_time + bp_usec;
94 unsigned long now = busy_loop_current_time();
95
96 return time_after(now, end_time);
97 }
98#endif
99 return true;
100}
101
Sridhar Samudrala7db6b042017-03-24 10:08:24 -0700102static inline void sk_busy_loop(struct sock *sk, int nonblock)
103{
104#ifdef CONFIG_NET_RX_BUSY_POLL
105 unsigned int napi_id = READ_ONCE(sk->sk_napi_id);
106
107 if (napi_id >= MIN_NAPI_ID)
Björn Töpel7fd32532020-11-30 19:51:56 +0100108 napi_busy_loop(napi_id, nonblock ? NULL : sk_busy_loop_end, sk,
109 READ_ONCE(sk->sk_prefer_busy_poll));
Sridhar Samudrala7db6b042017-03-24 10:08:24 -0700110#endif
111}
112
Alexander Duyckd2e64db2017-03-24 10:08:06 -0700113/* used in the NIC receive handler to mark the skb */
114static inline void skb_mark_napi_id(struct sk_buff *skb,
115 struct napi_struct *napi)
116{
117#ifdef CONFIG_NET_RX_BUSY_POLL
Amritha Nambiar78e57f12020-06-18 14:22:15 -0700118 /* If the skb was already marked with a valid NAPI ID, avoid overwriting
119 * it.
120 */
121 if (skb->napi_id < MIN_NAPI_ID)
122 skb->napi_id = napi->napi_id;
Alexander Duyckd2e64db2017-03-24 10:08:06 -0700123#endif
124}
125
Eric Dumazete68b6e52016-11-16 09:10:42 -0800126/* used in the protocol hanlder to propagate the napi_id to the socket */
127static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
128{
129#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetee8d1532019-10-29 10:54:44 -0700130 WRITE_ONCE(sk->sk_napi_id, skb->napi_id);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800131#endif
Amritha Nambiarc6345ce2018-06-29 21:26:57 -0700132 sk_rx_queue_set(sk, skb);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800133}
134
135/* variant used for unconnected sockets */
136static inline void sk_mark_napi_id_once(struct sock *sk,
137 const struct sk_buff *skb)
138{
139#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetee8d1532019-10-29 10:54:44 -0700140 if (!READ_ONCE(sk->sk_napi_id))
141 WRITE_ONCE(sk->sk_napi_id, skb->napi_id);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800142#endif
143}
144
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300145#endif /* _LINUX_NET_BUSY_POLL_H */