]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/netpoll.h
rhashtable: compact struct rhashtable_params
[mirror_ubuntu-artful-kernel.git] / include / linux / netpoll.h
CommitLineData
1da177e4
LT
1/*
2 * Common code for low-level network console, dump, and debugger code
3 *
4 * Derived from netconsole, kgdb-over-ethernet, and netdump patches
5 */
6
7#ifndef _LINUX_NETPOLL_H
8#define _LINUX_NETPOLL_H
9
10#include <linux/netdevice.h>
11#include <linux/interrupt.h>
53fb95d3 12#include <linux/rcupdate.h>
1da177e4
LT
13#include <linux/list.h>
14
b7394d24
CW
15union inet_addr {
16 __u32 all[4];
17 __be32 ip;
18 __be32 ip6[4];
19 struct in_addr in;
20 struct in6_addr in6;
21};
22
1da177e4
LT
23struct netpoll {
24 struct net_device *dev;
bf6bce71
SH
25 char dev_name[IFNAMSIZ];
26 const char *name;
5de4a473 27
b7394d24
CW
28 union inet_addr local_ip, remote_ip;
29 bool ipv6;
1da177e4 30 u16 local_port, remote_port;
09538641 31 u8 remote_mac[ETH_ALEN];
508e14b4 32
2cde6acd 33 struct work_struct cleanup_work;
115c1d6e
JM
34};
35
36struct netpoll_info {
93ec2c72 37 atomic_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
66b5552f
EB
50extern void netpoll_poll_disable(struct net_device *dev);
51extern void netpoll_poll_enable(struct net_device *dev);
ca99ca14 52#else
66b5552f
EB
53static inline void netpoll_poll_disable(struct net_device *dev) { return; }
54static inline void netpoll_poll_enable(struct net_device *dev) { return; }
ca99ca14
NH
55#endif
56
1da177e4 57void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
0bcc1816 58void netpoll_print_options(struct netpoll *np);
1da177e4 59int netpoll_parse_options(struct netpoll *np, char *opt);
a8779ec1 60int __netpoll_setup(struct netpoll *np, struct net_device *ndev);
1da177e4 61int netpoll_setup(struct netpoll *np);
8fdd95ec 62void __netpoll_cleanup(struct netpoll *np);
2cde6acd 63void __netpoll_free_async(struct netpoll *np);
1da177e4 64void netpoll_cleanup(struct netpoll *np);
c2355e1a
NH
65void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
66 struct net_device *dev);
67static inline void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
68{
2899656b
AW
69 unsigned long flags;
70 local_irq_save(flags);
c2355e1a 71 netpoll_send_skb_on_dev(np, skb, np->dev);
2899656b 72 local_irq_restore(flags);
c2355e1a
NH
73}
74
e1bd4d3d 75#ifdef CONFIG_NETPOLL
bea3348e
SH
76static inline void *netpoll_poll_lock(struct napi_struct *napi)
77{
78 struct net_device *dev = napi->dev;
79
bea3348e 80 if (dev && dev->npinfo) {
89c4b442
ED
81 int owner = smp_processor_id();
82
83 while (cmpxchg(&napi->poll_owner, -1, owner) != -1)
84 cpu_relax();
85
bea3348e 86 return napi;
1da177e4 87 }
53fb95d3 88 return NULL;
1da177e4
LT
89}
90
53fb95d3 91static inline void netpoll_poll_unlock(void *have)
1da177e4 92{
bea3348e 93 struct napi_struct *napi = have;
53fb95d3 94
89c4b442
ED
95 if (napi)
96 smp_store_release(&napi->poll_owner, -1);
1da177e4
LT
97}
98
77ab8a54 99static inline bool netpoll_tx_running(struct net_device *dev)
c18370f5
HX
100{
101 return irqs_disabled();
102}
103
1da177e4 104#else
bea3348e
SH
105static inline void *netpoll_poll_lock(struct napi_struct *napi)
106{
107 return NULL;
108}
109static inline void netpoll_poll_unlock(void *have)
110{
111}
112static inline void netpoll_netdev_init(struct net_device *dev)
113{
114}
77ab8a54 115static inline bool netpoll_tx_running(struct net_device *dev)
c18370f5 116{
77ab8a54 117 return false;
c18370f5 118}
1da177e4
LT
119#endif
120
121#endif