Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git] / include / linux / netpoll.h
blob3ef82d3a78db51d958858470f8158f72cfd74fb3
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Common code for low-level network console, dump, and debugger code
5 * Derived from netconsole, kgdb-over-ethernet, and netdump patches
6 */
8 #ifndef _LINUX_NETPOLL_H
9 #define _LINUX_NETPOLL_H
11 #include <linux/netdevice.h>
12 #include <linux/interrupt.h>
13 #include <linux/rcupdate.h>
14 #include <linux/list.h>
15 #include <linux/refcount.h>
17 union inet_addr {
18 __u32 all[4];
19 __be32 ip;
20 __be32 ip6[4];
21 struct in_addr in;
22 struct in6_addr in6;
25 struct netpoll {
26 struct net_device *dev;
27 char dev_name[IFNAMSIZ];
28 const char *name;
30 union inet_addr local_ip, remote_ip;
31 bool ipv6;
32 u16 local_port, remote_port;
33 u8 remote_mac[ETH_ALEN];
35 struct work_struct cleanup_work;
38 struct netpoll_info {
39 refcount_t refcnt;
41 struct semaphore dev_lock;
43 struct sk_buff_head txq;
45 struct delayed_work tx_work;
47 struct netpoll *netpoll;
48 struct rcu_head rcu;
51 #ifdef CONFIG_NETPOLL
52 void netpoll_poll_dev(struct net_device *dev);
53 void netpoll_poll_disable(struct net_device *dev);
54 void netpoll_poll_enable(struct net_device *dev);
55 #else
56 static inline void netpoll_poll_disable(struct net_device *dev) { return; }
57 static inline void netpoll_poll_enable(struct net_device *dev) { return; }
58 #endif
60 void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
61 void netpoll_print_options(struct netpoll *np);
62 int netpoll_parse_options(struct netpoll *np, char *opt);
63 int __netpoll_setup(struct netpoll *np, struct net_device *ndev);
64 int netpoll_setup(struct netpoll *np);
65 void __netpoll_cleanup(struct netpoll *np);
66 void __netpoll_free_async(struct netpoll *np);
67 void netpoll_cleanup(struct netpoll *np);
68 void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
69 struct net_device *dev);
70 static inline void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
72 unsigned long flags;
73 local_irq_save(flags);
74 netpoll_send_skb_on_dev(np, skb, np->dev);
75 local_irq_restore(flags);
78 #ifdef CONFIG_NETPOLL
79 static inline void *netpoll_poll_lock(struct napi_struct *napi)
81 struct net_device *dev = napi->dev;
83 if (dev && dev->npinfo) {
84 int owner = smp_processor_id();
86 while (cmpxchg(&napi->poll_owner, -1, owner) != -1)
87 cpu_relax();
89 return napi;
91 return NULL;
94 static inline void netpoll_poll_unlock(void *have)
96 struct napi_struct *napi = have;
98 if (napi)
99 smp_store_release(&napi->poll_owner, -1);
102 static inline bool netpoll_tx_running(struct net_device *dev)
104 return irqs_disabled();
107 #else
108 static inline void *netpoll_poll_lock(struct napi_struct *napi)
110 return NULL;
112 static inline void netpoll_poll_unlock(void *have)
115 static inline void netpoll_netdev_init(struct net_device *dev)
118 static inline bool netpoll_tx_running(struct net_device *dev)
120 return false;
122 #endif
124 #endif