2 * Common framework for low-level network console, dump, and debugger code
4 * Sep 8 2003 Matt Mackall <mpm@selenic.com>
6 * based on the netconsole code from:
8 * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2002 Red Hat, Inc.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/moduleparam.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/string.h>
18 #include <linux/if_arp.h>
19 #include <linux/inetdevice.h>
20 #include <linux/inet.h>
21 #include <linux/interrupt.h>
22 #include <linux/netpoll.h>
23 #include <linux/sched.h>
24 #include <linux/delay.h>
25 #include <linux/rcupdate.h>
26 #include <linux/workqueue.h>
27 #include <linux/slab.h>
28 #include <linux/export.h>
29 #include <linux/if_vlan.h>
32 #include <asm/unaligned.h>
33 #include <trace/events/napi.h>
36 * We maintain a small pool of fully-sized skbs, to make sure the
37 * message gets out even in extreme OOM situations.
40 #define MAX_UDP_CHUNK 1460
43 static struct sk_buff_head skb_pool
;
45 static atomic_t trapped
;
47 #define USEC_PER_POLL 50
48 #define NETPOLL_RX_ENABLED 1
49 #define NETPOLL_RX_DROP 2
51 #define MAX_SKB_SIZE \
52 (sizeof(struct ethhdr) + \
53 sizeof(struct iphdr) + \
54 sizeof(struct udphdr) + \
57 static void zap_completion_queue(void);
58 static void netpoll_arp_reply(struct sk_buff
*skb
, struct netpoll_info
*npinfo
);
60 static unsigned int carrier_timeout
= 4;
61 module_param(carrier_timeout
, uint
, 0644);
63 #define np_info(np, fmt, ...) \
64 pr_info("%s: " fmt, np->name, ##__VA_ARGS__)
65 #define np_err(np, fmt, ...) \
66 pr_err("%s: " fmt, np->name, ##__VA_ARGS__)
67 #define np_notice(np, fmt, ...) \
68 pr_notice("%s: " fmt, np->name, ##__VA_ARGS__)
70 static void queue_process(struct work_struct
*work
)
72 struct netpoll_info
*npinfo
=
73 container_of(work
, struct netpoll_info
, tx_work
.work
);
77 while ((skb
= skb_dequeue(&npinfo
->txq
))) {
78 struct net_device
*dev
= skb
->dev
;
79 const struct net_device_ops
*ops
= dev
->netdev_ops
;
80 struct netdev_queue
*txq
;
82 if (!netif_device_present(dev
) || !netif_running(dev
)) {
87 txq
= netdev_get_tx_queue(dev
, skb_get_queue_mapping(skb
));
89 local_irq_save(flags
);
90 __netif_tx_lock(txq
, smp_processor_id());
91 if (netif_xmit_frozen_or_stopped(txq
) ||
92 ops
->ndo_start_xmit(skb
, dev
) != NETDEV_TX_OK
) {
93 skb_queue_head(&npinfo
->txq
, skb
);
94 __netif_tx_unlock(txq
);
95 local_irq_restore(flags
);
97 schedule_delayed_work(&npinfo
->tx_work
, HZ
/10);
100 __netif_tx_unlock(txq
);
101 local_irq_restore(flags
);
105 static __sum16
checksum_udp(struct sk_buff
*skb
, struct udphdr
*uh
,
106 unsigned short ulen
, __be32 saddr
, __be32 daddr
)
110 if (uh
->check
== 0 || skb_csum_unnecessary(skb
))
113 psum
= csum_tcpudp_nofold(saddr
, daddr
, ulen
, IPPROTO_UDP
, 0);
115 if (skb
->ip_summed
== CHECKSUM_COMPLETE
&&
116 !csum_fold(csum_add(psum
, skb
->csum
)))
121 return __skb_checksum_complete(skb
);
125 * Check whether delayed processing was scheduled for our NIC. If so,
126 * we attempt to grab the poll lock and use ->poll() to pump the card.
127 * If this fails, either we've recursed in ->poll() or it's already
128 * running on another CPU.
130 * Note: we don't mask interrupts with this lock because we're using
131 * trylock here and interrupts are already disabled in the softirq
132 * case. Further, we test the poll_owner to avoid recursion on UP
133 * systems where the lock doesn't exist.
135 * In cases where there is bi-directional communications, reading only
136 * one message at a time can lead to packets being dropped by the
137 * network adapter, forcing superfluous retries and possibly timeouts.
138 * Thus, we set our budget to greater than 1.
140 static int poll_one_napi(struct netpoll_info
*npinfo
,
141 struct napi_struct
*napi
, int budget
)
145 /* net_rx_action's ->poll() invocations and our's are
146 * synchronized by this test which is only made while
147 * holding the napi->poll_lock.
149 if (!test_bit(NAPI_STATE_SCHED
, &napi
->state
))
152 npinfo
->rx_flags
|= NETPOLL_RX_DROP
;
153 atomic_inc(&trapped
);
154 set_bit(NAPI_STATE_NPSVC
, &napi
->state
);
156 work
= napi
->poll(napi
, budget
);
157 trace_napi_poll(napi
);
159 clear_bit(NAPI_STATE_NPSVC
, &napi
->state
);
160 atomic_dec(&trapped
);
161 npinfo
->rx_flags
&= ~NETPOLL_RX_DROP
;
163 return budget
- work
;
166 static void poll_napi(struct net_device
*dev
)
168 struct napi_struct
*napi
;
171 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
172 if (napi
->poll_owner
!= smp_processor_id() &&
173 spin_trylock(&napi
->poll_lock
)) {
174 budget
= poll_one_napi(rcu_dereference_bh(dev
->npinfo
),
176 spin_unlock(&napi
->poll_lock
);
184 static void service_arp_queue(struct netpoll_info
*npi
)
189 while ((skb
= skb_dequeue(&npi
->arp_tx
)))
190 netpoll_arp_reply(skb
, npi
);
194 static void netpoll_poll_dev(struct net_device
*dev
)
196 const struct net_device_ops
*ops
;
197 struct netpoll_info
*ni
= rcu_dereference_bh(dev
->npinfo
);
199 if (!dev
|| !netif_running(dev
))
202 ops
= dev
->netdev_ops
;
203 if (!ops
->ndo_poll_controller
)
206 /* Process pending work on NIC */
207 ops
->ndo_poll_controller(dev
);
211 if (dev
->flags
& IFF_SLAVE
) {
213 struct net_device
*bond_dev
= dev
->master
;
215 struct netpoll_info
*bond_ni
= rcu_dereference_bh(bond_dev
->npinfo
);
216 while ((skb
= skb_dequeue(&ni
->arp_tx
))) {
218 skb_queue_tail(&bond_ni
->arp_tx
, skb
);
223 service_arp_queue(ni
);
225 zap_completion_queue();
228 static void refill_skbs(void)
233 spin_lock_irqsave(&skb_pool
.lock
, flags
);
234 while (skb_pool
.qlen
< MAX_SKBS
) {
235 skb
= alloc_skb(MAX_SKB_SIZE
, GFP_ATOMIC
);
239 __skb_queue_tail(&skb_pool
, skb
);
241 spin_unlock_irqrestore(&skb_pool
.lock
, flags
);
244 static void zap_completion_queue(void)
247 struct softnet_data
*sd
= &get_cpu_var(softnet_data
);
249 if (sd
->completion_queue
) {
250 struct sk_buff
*clist
;
252 local_irq_save(flags
);
253 clist
= sd
->completion_queue
;
254 sd
->completion_queue
= NULL
;
255 local_irq_restore(flags
);
257 while (clist
!= NULL
) {
258 struct sk_buff
*skb
= clist
;
260 if (skb
->destructor
) {
261 atomic_inc(&skb
->users
);
262 dev_kfree_skb_any(skb
); /* put this one back */
269 put_cpu_var(softnet_data
);
272 static struct sk_buff
*find_skb(struct netpoll
*np
, int len
, int reserve
)
277 zap_completion_queue();
281 skb
= alloc_skb(len
, GFP_ATOMIC
);
283 skb
= skb_dequeue(&skb_pool
);
287 netpoll_poll_dev(np
->dev
);
293 atomic_set(&skb
->users
, 1);
294 skb_reserve(skb
, reserve
);
298 static int netpoll_owner_active(struct net_device
*dev
)
300 struct napi_struct
*napi
;
302 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
303 if (napi
->poll_owner
== smp_processor_id())
309 /* call with IRQ disabled */
310 void netpoll_send_skb_on_dev(struct netpoll
*np
, struct sk_buff
*skb
,
311 struct net_device
*dev
)
313 int status
= NETDEV_TX_BUSY
;
315 const struct net_device_ops
*ops
= dev
->netdev_ops
;
316 /* It is up to the caller to keep npinfo alive. */
317 struct netpoll_info
*npinfo
;
319 WARN_ON_ONCE(!irqs_disabled());
321 npinfo
= rcu_dereference_bh(np
->dev
->npinfo
);
322 if (!npinfo
|| !netif_running(dev
) || !netif_device_present(dev
)) {
327 /* don't get messages out of order, and no recursion */
328 if (skb_queue_len(&npinfo
->txq
) == 0 && !netpoll_owner_active(dev
)) {
329 struct netdev_queue
*txq
;
331 txq
= netdev_pick_tx(dev
, skb
);
333 /* try until next clock tick */
334 for (tries
= jiffies_to_usecs(1)/USEC_PER_POLL
;
335 tries
> 0; --tries
) {
336 if (__netif_tx_trylock(txq
)) {
337 if (!netif_xmit_stopped(txq
)) {
338 if (vlan_tx_tag_present(skb
) &&
339 !(netif_skb_features(skb
) & NETIF_F_HW_VLAN_TX
)) {
340 skb
= __vlan_put_tag(skb
, vlan_tx_tag_get(skb
));
346 status
= ops
->ndo_start_xmit(skb
, dev
);
347 if (status
== NETDEV_TX_OK
)
348 txq_trans_update(txq
);
350 __netif_tx_unlock(txq
);
352 if (status
== NETDEV_TX_OK
)
357 /* tickle device maybe there is some cleanup */
358 netpoll_poll_dev(np
->dev
);
360 udelay(USEC_PER_POLL
);
363 WARN_ONCE(!irqs_disabled(),
364 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pF)\n",
365 dev
->name
, ops
->ndo_start_xmit
);
369 if (status
!= NETDEV_TX_OK
) {
370 skb_queue_tail(&npinfo
->txq
, skb
);
371 schedule_delayed_work(&npinfo
->tx_work
,0);
374 EXPORT_SYMBOL(netpoll_send_skb_on_dev
);
376 void netpoll_send_udp(struct netpoll
*np
, const char *msg
, int len
)
378 int total_len
, ip_len
, udp_len
;
383 static atomic_t ip_ident
;
385 udp_len
= len
+ sizeof(*udph
);
386 ip_len
= udp_len
+ sizeof(*iph
);
387 total_len
= ip_len
+ LL_RESERVED_SPACE(np
->dev
);
389 skb
= find_skb(np
, total_len
+ np
->dev
->needed_tailroom
,
394 skb_copy_to_linear_data(skb
, msg
, len
);
397 skb_push(skb
, sizeof(*udph
));
398 skb_reset_transport_header(skb
);
400 udph
->source
= htons(np
->local_port
);
401 udph
->dest
= htons(np
->remote_port
);
402 udph
->len
= htons(udp_len
);
404 udph
->check
= csum_tcpudp_magic(np
->local_ip
,
406 udp_len
, IPPROTO_UDP
,
407 csum_partial(udph
, udp_len
, 0));
408 if (udph
->check
== 0)
409 udph
->check
= CSUM_MANGLED_0
;
411 skb_push(skb
, sizeof(*iph
));
412 skb_reset_network_header(skb
);
415 /* iph->version = 4; iph->ihl = 5; */
416 put_unaligned(0x45, (unsigned char *)iph
);
418 put_unaligned(htons(ip_len
), &(iph
->tot_len
));
419 iph
->id
= htons(atomic_inc_return(&ip_ident
));
422 iph
->protocol
= IPPROTO_UDP
;
424 put_unaligned(np
->local_ip
, &(iph
->saddr
));
425 put_unaligned(np
->remote_ip
, &(iph
->daddr
));
426 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
428 eth
= (struct ethhdr
*) skb_push(skb
, ETH_HLEN
);
429 skb_reset_mac_header(skb
);
430 skb
->protocol
= eth
->h_proto
= htons(ETH_P_IP
);
431 memcpy(eth
->h_source
, np
->dev
->dev_addr
, ETH_ALEN
);
432 memcpy(eth
->h_dest
, np
->remote_mac
, ETH_ALEN
);
436 netpoll_send_skb(np
, skb
);
438 EXPORT_SYMBOL(netpoll_send_udp
);
440 static void netpoll_arp_reply(struct sk_buff
*skb
, struct netpoll_info
*npinfo
)
443 unsigned char *arp_ptr
;
444 int size
, type
= ARPOP_REPLY
, ptype
= ETH_P_ARP
;
447 struct sk_buff
*send_skb
;
448 struct netpoll
*np
, *tmp
;
453 if (list_empty(&npinfo
->rx_np
))
456 /* Before checking the packet, we do some early
457 inspection whether this is interesting at all */
458 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
459 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
460 if (np
->dev
== skb
->dev
)
463 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
465 /* No netpoll struct is using this dev */
469 /* No arp on this interface */
470 if (skb
->dev
->flags
& IFF_NOARP
)
473 if (!pskb_may_pull(skb
, arp_hdr_len(skb
->dev
)))
476 skb_reset_network_header(skb
);
477 skb_reset_transport_header(skb
);
480 if ((arp
->ar_hrd
!= htons(ARPHRD_ETHER
) &&
481 arp
->ar_hrd
!= htons(ARPHRD_IEEE802
)) ||
482 arp
->ar_pro
!= htons(ETH_P_IP
) ||
483 arp
->ar_op
!= htons(ARPOP_REQUEST
))
486 arp_ptr
= (unsigned char *)(arp
+1);
487 /* save the location of the src hw addr */
489 arp_ptr
+= skb
->dev
->addr_len
;
490 memcpy(&sip
, arp_ptr
, 4);
492 /* If we actually cared about dst hw addr,
493 it would get copied here */
494 arp_ptr
+= skb
->dev
->addr_len
;
495 memcpy(&tip
, arp_ptr
, 4);
497 /* Should we ignore arp? */
498 if (ipv4_is_loopback(tip
) || ipv4_is_multicast(tip
))
501 size
= arp_hdr_len(skb
->dev
);
503 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
504 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
505 if (tip
!= np
->local_ip
)
508 hlen
= LL_RESERVED_SPACE(np
->dev
);
509 tlen
= np
->dev
->needed_tailroom
;
510 send_skb
= find_skb(np
, size
+ hlen
+ tlen
, hlen
);
514 skb_reset_network_header(send_skb
);
515 arp
= (struct arphdr
*) skb_put(send_skb
, size
);
516 send_skb
->dev
= skb
->dev
;
517 send_skb
->protocol
= htons(ETH_P_ARP
);
519 /* Fill the device header for the ARP frame */
520 if (dev_hard_header(send_skb
, skb
->dev
, ptype
,
521 sha
, np
->dev
->dev_addr
,
522 send_skb
->len
) < 0) {
528 * Fill out the arp protocol part.
530 * we only support ethernet device type,
531 * which (according to RFC 1390) should
532 * always equal 1 (Ethernet).
535 arp
->ar_hrd
= htons(np
->dev
->type
);
536 arp
->ar_pro
= htons(ETH_P_IP
);
537 arp
->ar_hln
= np
->dev
->addr_len
;
539 arp
->ar_op
= htons(type
);
541 arp_ptr
= (unsigned char *)(arp
+ 1);
542 memcpy(arp_ptr
, np
->dev
->dev_addr
, np
->dev
->addr_len
);
543 arp_ptr
+= np
->dev
->addr_len
;
544 memcpy(arp_ptr
, &tip
, 4);
546 memcpy(arp_ptr
, sha
, np
->dev
->addr_len
);
547 arp_ptr
+= np
->dev
->addr_len
;
548 memcpy(arp_ptr
, &sip
, 4);
550 netpoll_send_skb(np
, send_skb
);
552 /* If there are several rx_hooks for the same address,
553 we're fine by sending a single reply */
556 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
559 int __netpoll_rx(struct sk_buff
*skb
, struct netpoll_info
*npinfo
)
561 int proto
, len
, ulen
;
563 const struct iphdr
*iph
;
565 struct netpoll
*np
, *tmp
;
567 if (list_empty(&npinfo
->rx_np
))
570 if (skb
->dev
->type
!= ARPHRD_ETHER
)
573 /* check if netpoll clients need ARP */
574 if (skb
->protocol
== htons(ETH_P_ARP
) &&
575 atomic_read(&trapped
)) {
576 skb_queue_tail(&npinfo
->arp_tx
, skb
);
580 if (skb
->protocol
== cpu_to_be16(ETH_P_8021Q
)) {
581 skb
= vlan_untag(skb
);
586 proto
= ntohs(eth_hdr(skb
)->h_proto
);
587 if (proto
!= ETH_P_IP
)
589 if (skb
->pkt_type
== PACKET_OTHERHOST
)
594 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
596 iph
= (struct iphdr
*)skb
->data
;
597 if (iph
->ihl
< 5 || iph
->version
!= 4)
599 if (!pskb_may_pull(skb
, iph
->ihl
*4))
601 iph
= (struct iphdr
*)skb
->data
;
602 if (ip_fast_csum((u8
*)iph
, iph
->ihl
) != 0)
605 len
= ntohs(iph
->tot_len
);
606 if (skb
->len
< len
|| len
< iph
->ihl
*4)
610 * Our transport medium may have padded the buffer out.
611 * Now We trim to the true length of the frame.
613 if (pskb_trim_rcsum(skb
, len
))
616 iph
= (struct iphdr
*)skb
->data
;
617 if (iph
->protocol
!= IPPROTO_UDP
)
621 uh
= (struct udphdr
*)(((char *)iph
) + iph
->ihl
*4);
622 ulen
= ntohs(uh
->len
);
626 if (checksum_udp(skb
, uh
, ulen
, iph
->saddr
, iph
->daddr
))
629 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
630 if (np
->local_ip
&& np
->local_ip
!= iph
->daddr
)
632 if (np
->remote_ip
&& np
->remote_ip
!= iph
->saddr
)
634 if (np
->local_port
&& np
->local_port
!= ntohs(uh
->dest
))
637 np
->rx_hook(np
, ntohs(uh
->source
),
639 ulen
- sizeof(struct udphdr
));
650 if (atomic_read(&trapped
)) {
658 void netpoll_print_options(struct netpoll
*np
)
660 np_info(np
, "local port %d\n", np
->local_port
);
661 np_info(np
, "local IP %pI4\n", &np
->local_ip
);
662 np_info(np
, "interface '%s'\n", np
->dev_name
);
663 np_info(np
, "remote port %d\n", np
->remote_port
);
664 np_info(np
, "remote IP %pI4\n", &np
->remote_ip
);
665 np_info(np
, "remote ethernet address %pM\n", np
->remote_mac
);
667 EXPORT_SYMBOL(netpoll_print_options
);
669 int netpoll_parse_options(struct netpoll
*np
, char *opt
)
671 char *cur
=opt
, *delim
;
674 if ((delim
= strchr(cur
, '@')) == NULL
)
677 np
->local_port
= simple_strtol(cur
, NULL
, 10);
683 if ((delim
= strchr(cur
, '/')) == NULL
)
686 np
->local_ip
= in_aton(cur
);
692 /* parse out dev name */
693 if ((delim
= strchr(cur
, ',')) == NULL
)
696 strlcpy(np
->dev_name
, cur
, sizeof(np
->dev_name
));
703 if ((delim
= strchr(cur
, '@')) == NULL
)
706 if (*cur
== ' ' || *cur
== '\t')
707 np_info(np
, "warning: whitespace is not allowed\n");
708 np
->remote_port
= simple_strtol(cur
, NULL
, 10);
714 if ((delim
= strchr(cur
, '/')) == NULL
)
717 np
->remote_ip
= in_aton(cur
);
722 if (!mac_pton(cur
, np
->remote_mac
))
726 netpoll_print_options(np
);
731 np_info(np
, "couldn't parse config at '%s'!\n", cur
);
734 EXPORT_SYMBOL(netpoll_parse_options
);
736 int __netpoll_setup(struct netpoll
*np
, struct net_device
*ndev
, gfp_t gfp
)
738 struct netpoll_info
*npinfo
;
739 const struct net_device_ops
*ops
;
744 strlcpy(np
->dev_name
, ndev
->name
, IFNAMSIZ
);
746 if ((ndev
->priv_flags
& IFF_DISABLE_NETPOLL
) ||
747 !ndev
->netdev_ops
->ndo_poll_controller
) {
748 np_err(np
, "%s doesn't support polling, aborting\n",
755 npinfo
= kmalloc(sizeof(*npinfo
), gfp
);
761 npinfo
->rx_flags
= 0;
762 INIT_LIST_HEAD(&npinfo
->rx_np
);
764 spin_lock_init(&npinfo
->rx_lock
);
765 skb_queue_head_init(&npinfo
->arp_tx
);
766 skb_queue_head_init(&npinfo
->txq
);
767 INIT_DELAYED_WORK(&npinfo
->tx_work
, queue_process
);
769 atomic_set(&npinfo
->refcnt
, 1);
771 ops
= np
->dev
->netdev_ops
;
772 if (ops
->ndo_netpoll_setup
) {
773 err
= ops
->ndo_netpoll_setup(ndev
, npinfo
, gfp
);
778 npinfo
= ndev
->npinfo
;
779 atomic_inc(&npinfo
->refcnt
);
782 npinfo
->netpoll
= np
;
785 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
786 npinfo
->rx_flags
|= NETPOLL_RX_ENABLED
;
787 list_add_tail(&np
->rx
, &npinfo
->rx_np
);
788 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
791 /* last thing to do is link it to the net device structure */
792 rcu_assign_pointer(ndev
->npinfo
, npinfo
);
801 EXPORT_SYMBOL_GPL(__netpoll_setup
);
803 int netpoll_setup(struct netpoll
*np
)
805 struct net_device
*ndev
= NULL
;
806 struct in_device
*in_dev
;
810 ndev
= dev_get_by_name(&init_net
, np
->dev_name
);
812 np_err(np
, "%s doesn't exist, aborting\n", np
->dev_name
);
817 np_err(np
, "%s is a slave device, aborting\n", np
->dev_name
);
822 if (!netif_running(ndev
)) {
823 unsigned long atmost
, atleast
;
825 np_info(np
, "device %s not up yet, forcing it\n", np
->dev_name
);
828 err
= dev_open(ndev
);
832 np_err(np
, "failed to open %s\n", ndev
->name
);
836 atleast
= jiffies
+ HZ
/10;
837 atmost
= jiffies
+ carrier_timeout
* HZ
;
838 while (!netif_carrier_ok(ndev
)) {
839 if (time_after(jiffies
, atmost
)) {
840 np_notice(np
, "timeout waiting for carrier\n");
846 /* If carrier appears to come up instantly, we don't
847 * trust it and pause so that we don't pump all our
848 * queued console messages into the bitbucket.
851 if (time_before(jiffies
, atleast
)) {
852 np_notice(np
, "carrier detect appears untrustworthy, waiting 4 seconds\n");
859 in_dev
= __in_dev_get_rcu(ndev
);
861 if (!in_dev
|| !in_dev
->ifa_list
) {
863 np_err(np
, "no IP address for %s, aborting\n",
869 np
->local_ip
= in_dev
->ifa_list
->ifa_local
;
871 np_info(np
, "local IP %pI4\n", &np
->local_ip
);
874 /* fill up the skb queue */
878 err
= __netpoll_setup(np
, ndev
, GFP_KERNEL
);
890 EXPORT_SYMBOL(netpoll_setup
);
892 static int __init
netpoll_init(void)
894 skb_queue_head_init(&skb_pool
);
897 core_initcall(netpoll_init
);
899 static void rcu_cleanup_netpoll_info(struct rcu_head
*rcu_head
)
901 struct netpoll_info
*npinfo
=
902 container_of(rcu_head
, struct netpoll_info
, rcu
);
904 skb_queue_purge(&npinfo
->arp_tx
);
905 skb_queue_purge(&npinfo
->txq
);
907 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
908 cancel_delayed_work(&npinfo
->tx_work
);
910 /* clean after last, unfinished work */
911 __skb_queue_purge(&npinfo
->txq
);
912 /* now cancel it again */
913 cancel_delayed_work(&npinfo
->tx_work
);
917 void __netpoll_cleanup(struct netpoll
*np
)
919 struct netpoll_info
*npinfo
;
922 npinfo
= np
->dev
->npinfo
;
926 if (!list_empty(&npinfo
->rx_np
)) {
927 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
929 if (list_empty(&npinfo
->rx_np
))
930 npinfo
->rx_flags
&= ~NETPOLL_RX_ENABLED
;
931 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
934 if (atomic_dec_and_test(&npinfo
->refcnt
)) {
935 const struct net_device_ops
*ops
;
937 ops
= np
->dev
->netdev_ops
;
938 if (ops
->ndo_netpoll_cleanup
)
939 ops
->ndo_netpoll_cleanup(np
->dev
);
941 RCU_INIT_POINTER(np
->dev
->npinfo
, NULL
);
942 call_rcu_bh(&npinfo
->rcu
, rcu_cleanup_netpoll_info
);
945 EXPORT_SYMBOL_GPL(__netpoll_cleanup
);
947 static void rcu_cleanup_netpoll(struct rcu_head
*rcu_head
)
949 struct netpoll
*np
= container_of(rcu_head
, struct netpoll
, rcu
);
951 __netpoll_cleanup(np
);
955 void __netpoll_free_rcu(struct netpoll
*np
)
957 call_rcu_bh(&np
->rcu
, rcu_cleanup_netpoll
);
959 EXPORT_SYMBOL_GPL(__netpoll_free_rcu
);
961 void netpoll_cleanup(struct netpoll
*np
)
967 __netpoll_cleanup(np
);
973 EXPORT_SYMBOL(netpoll_cleanup
);
975 int netpoll_trap(void)
977 return atomic_read(&trapped
);
979 EXPORT_SYMBOL(netpoll_trap
);
981 void netpoll_set_trap(int trap
)
984 atomic_inc(&trapped
);
986 atomic_dec(&trapped
);
988 EXPORT_SYMBOL(netpoll_set_trap
);