#ifndef _LINUX_NET_BUSY_POLL_H
#define _LINUX_NET_BUSY_POLL_H
#include <linux/netdevice.h>
#include <linux/sched/clock.h>
#include <linux/sched/signal.h>
#include <net/ip.h>
#include <net/xdp.h>
#define MIN_NAPI_ID …
#define BUSY_POLL_BUDGET …
#ifdef CONFIG_NET_RX_BUSY_POLL
struct napi_struct;
extern unsigned int sysctl_net_busy_read __read_mostly;
extern unsigned int sysctl_net_busy_poll __read_mostly;
static inline bool net_busy_loop_on(void)
{ … }
static inline bool sk_can_busy_loop(const struct sock *sk)
{ … }
bool sk_busy_loop_end(void *p, unsigned long start_time);
void napi_busy_loop(unsigned int napi_id,
bool (*loop_end)(void *, unsigned long),
void *loop_end_arg, bool prefer_busy_poll, u16 budget);
void napi_busy_loop_rcu(unsigned int napi_id,
bool (*loop_end)(void *, unsigned long),
void *loop_end_arg, bool prefer_busy_poll, u16 budget);
#else
static inline unsigned long net_busy_loop_on(void)
{
return 0;
}
static inline bool sk_can_busy_loop(struct sock *sk)
{
return false;
}
#endif
static inline unsigned long busy_loop_current_time(void)
{ … }
static inline bool busy_loop_timeout(unsigned long start_time)
{ … }
static inline bool sk_busy_loop_timeout(struct sock *sk,
unsigned long start_time)
{ … }
static inline void sk_busy_loop(struct sock *sk, int nonblock)
{ … }
static inline void skb_mark_napi_id(struct sk_buff *skb,
struct napi_struct *napi)
{ … }
static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
{ … }
static inline void sk_mark_napi_id_set(struct sock *sk,
const struct sk_buff *skb)
{ … }
static inline void __sk_mark_napi_id_once(struct sock *sk, unsigned int napi_id)
{ … }
static inline void sk_mark_napi_id_once(struct sock *sk,
const struct sk_buff *skb)
{ … }
static inline void sk_mark_napi_id_once_xdp(struct sock *sk,
const struct xdp_buff *xdp)
{ … }
#endif