]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/netpoll.h
Merge tag 'irqchip-fixes-5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-jammy-kernel.git] / include / linux / netpoll.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * Common code for low-level network console, dump, and debugger code
4 *
5 * Derived from netconsole, kgdb-over-ethernet, and netdump patches
6 */
7
8#ifndef _LINUX_NETPOLL_H
9#define _LINUX_NETPOLL_H
10
11#include <linux/netdevice.h>
12#include <linux/interrupt.h>
53fb95d3 13#include <linux/rcupdate.h>
1da177e4 14#include <linux/list.h>
433cea4d 15#include <linux/refcount.h>
1da177e4 16
b7394d24
CW
17union inet_addr {
18 __u32 all[4];
19 __be32 ip;
20 __be32 ip6[4];
21 struct in_addr in;
22 struct in6_addr in6;
23};
24
1da177e4
LT
25struct netpoll {
26 struct net_device *dev;
bf6bce71
SH
27 char dev_name[IFNAMSIZ];
28 const char *name;
5de4a473 29
b7394d24
CW
30 union inet_addr local_ip, remote_ip;
31 bool ipv6;
1da177e4 32 u16 local_port, remote_port;
09538641 33 u8 remote_mac[ETH_ALEN];
115c1d6e
JM
34};
35
36struct netpoll_info {
433cea4d 37 refcount_t refcnt;
508e14b4 38
bd7c4b60 39 struct semaphore dev_lock;
508e14b4 40
b6cd27ed 41 struct sk_buff_head txq;
508e14b4 42
6d5aefb8 43 struct delayed_work tx_work;
0e34e931
WC
44
45 struct netpoll *netpoll;
38e6bc18 46 struct rcu_head rcu;
1da177e4
LT
47};
48
ca99ca14 49#ifdef CONFIG_NETPOLL
ac3d9dd0
ED
50void netpoll_poll_dev(struct net_device *dev);
51void netpoll_poll_disable(struct net_device *dev);
52void netpoll_poll_enable(struct net_device *dev);
ca99ca14 53#else
66b5552f
EB
54static inline void netpoll_poll_disable(struct net_device *dev) { return; }
55static inline void netpoll_poll_enable(struct net_device *dev) { return; }
ca99ca14
NH
56#endif
57
1da177e4 58void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
0bcc1816 59void netpoll_print_options(struct netpoll *np);
1da177e4 60int netpoll_parse_options(struct netpoll *np, char *opt);
a8779ec1 61int __netpoll_setup(struct netpoll *np, struct net_device *ndev);
1da177e4 62int netpoll_setup(struct netpoll *np);
8fdd95ec 63void __netpoll_cleanup(struct netpoll *np);
c9fbd71f 64void __netpoll_free(struct netpoll *np);
1da177e4 65void netpoll_cleanup(struct netpoll *np);
1ddabdfa 66netdev_tx_t netpoll_send_skb(struct netpoll *np, struct sk_buff *skb);
c2355e1a 67
e1bd4d3d 68#ifdef CONFIG_NETPOLL
bea3348e
SH
69static inline void *netpoll_poll_lock(struct napi_struct *napi)
70{
71 struct net_device *dev = napi->dev;
72
bea3348e 73 if (dev && dev->npinfo) {
89c4b442
ED
74 int owner = smp_processor_id();
75
76 while (cmpxchg(&napi->poll_owner, -1, owner) != -1)
77 cpu_relax();
78
bea3348e 79 return napi;
1da177e4 80 }
53fb95d3 81 return NULL;
1da177e4
LT
82}
83
53fb95d3 84static inline void netpoll_poll_unlock(void *have)
1da177e4 85{
bea3348e 86 struct napi_struct *napi = have;
53fb95d3 87
89c4b442
ED
88 if (napi)
89 smp_store_release(&napi->poll_owner, -1);
1da177e4
LT
90}
91
77ab8a54 92static inline bool netpoll_tx_running(struct net_device *dev)
c18370f5
HX
93{
94 return irqs_disabled();
95}
96
1da177e4 97#else
bea3348e
SH
98static inline void *netpoll_poll_lock(struct napi_struct *napi)
99{
100 return NULL;
101}
102static inline void netpoll_poll_unlock(void *have)
103{
104}
77ab8a54 105static inline bool netpoll_tx_running(struct net_device *dev)
c18370f5 106{
77ab8a54 107 return false;
c18370f5 108}
1da177e4
LT
109#endif
110
111#endif