[NET]: Remove link_watch delay for up even when we're down
[linux-2.6] / net / core / link_watch.c
1 /*
2  * Linux network device link state notification
3  *
4  * Author:
5  *     Stefan Rompf <sux@loplof.de>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version
10  * 2 of the License, or (at your option) any later version.
11  *
12  */
13
14 #include <linux/module.h>
15 #include <linux/netdevice.h>
16 #include <linux/if.h>
17 #include <net/sock.h>
18 #include <net/pkt_sched.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/jiffies.h>
21 #include <linux/spinlock.h>
22 #include <linux/slab.h>
23 #include <linux/workqueue.h>
24 #include <linux/bitops.h>
25 #include <asm/types.h>
26
27
28 enum lw_bits {
29         LW_RUNNING = 0,
30 };
31
32 static unsigned long linkwatch_flags;
33 static unsigned long linkwatch_nextevent;
34
35 static void linkwatch_event(struct work_struct *dummy);
36 static DECLARE_DELAYED_WORK(linkwatch_work, linkwatch_event);
37
38 static struct net_device *lweventlist;
39 static DEFINE_SPINLOCK(lweventlist_lock);
40
41 static unsigned char default_operstate(const struct net_device *dev)
42 {
43         if (!netif_carrier_ok(dev))
44                 return (dev->ifindex != dev->iflink ?
45                         IF_OPER_LOWERLAYERDOWN : IF_OPER_DOWN);
46
47         if (netif_dormant(dev))
48                 return IF_OPER_DORMANT;
49
50         return IF_OPER_UP;
51 }
52
53
54 static void rfc2863_policy(struct net_device *dev)
55 {
56         unsigned char operstate = default_operstate(dev);
57
58         if (operstate == dev->operstate)
59                 return;
60
61         write_lock_bh(&dev_base_lock);
62
63         switch(dev->link_mode) {
64         case IF_LINK_MODE_DORMANT:
65                 if (operstate == IF_OPER_UP)
66                         operstate = IF_OPER_DORMANT;
67                 break;
68
69         case IF_LINK_MODE_DEFAULT:
70         default:
71                 break;
72         }
73
74         dev->operstate = operstate;
75
76         write_unlock_bh(&dev_base_lock);
77 }
78
79
80 static int linkwatch_urgent_event(struct net_device *dev)
81 {
82         return netif_running(dev) && netif_carrier_ok(dev) &&
83                dev->qdisc != dev->qdisc_sleeping;
84 }
85
86
87 static void linkwatch_add_event(struct net_device *dev)
88 {
89         unsigned long flags;
90
91         spin_lock_irqsave(&lweventlist_lock, flags);
92         dev->link_watch_next = lweventlist;
93         lweventlist = dev;
94         spin_unlock_irqrestore(&lweventlist_lock, flags);
95 }
96
97
98 static void linkwatch_schedule_work(unsigned long delay)
99 {
100         if (test_and_set_bit(LW_RUNNING, &linkwatch_flags))
101                 return;
102
103         /* If we wrap around we'll delay it by at most HZ. */
104         if (delay > HZ)
105                 delay = 0;
106
107         schedule_delayed_work(&linkwatch_work, delay);
108 }
109
110
111 static void __linkwatch_run_queue(int urgent_only)
112 {
113         struct net_device *next;
114
115         /*
116          * Limit the number of linkwatch events to one
117          * per second so that a runaway driver does not
118          * cause a storm of messages on the netlink
119          * socket.  This limit does not apply to up events
120          * while the device qdisc is down.
121          */
122         if (!urgent_only)
123                 linkwatch_nextevent = jiffies + HZ;
124         clear_bit(LW_RUNNING, &linkwatch_flags);
125
126         spin_lock_irq(&lweventlist_lock);
127         next = lweventlist;
128         lweventlist = NULL;
129         spin_unlock_irq(&lweventlist_lock);
130
131         while (next) {
132                 struct net_device *dev = next;
133
134                 next = dev->link_watch_next;
135
136                 if (urgent_only && !linkwatch_urgent_event(dev)) {
137                         linkwatch_add_event(dev);
138                         continue;
139                 }
140
141                 /*
142                  * Make sure the above read is complete since it can be
143                  * rewritten as soon as we clear the bit below.
144                  */
145                 smp_mb__before_clear_bit();
146
147                 /* We are about to handle this device,
148                  * so new events can be accepted
149                  */
150                 clear_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state);
151
152                 rfc2863_policy(dev);
153                 if (dev->flags & IFF_UP) {
154                         if (netif_carrier_ok(dev)) {
155                                 WARN_ON(dev->qdisc_sleeping == &noop_qdisc);
156                                 dev_activate(dev);
157                         } else
158                                 dev_deactivate(dev);
159
160                         netdev_state_change(dev);
161                 }
162
163                 dev_put(dev);
164         }
165
166         if (lweventlist)
167                 linkwatch_schedule_work(linkwatch_nextevent - jiffies);
168 }
169
170
171 /* Must be called with the rtnl semaphore held */
172 void linkwatch_run_queue(void)
173 {
174         __linkwatch_run_queue(0);
175 }
176
177
178 static void linkwatch_event(struct work_struct *dummy)
179 {
180         rtnl_lock();
181         __linkwatch_run_queue(time_after(linkwatch_nextevent, jiffies));
182         rtnl_unlock();
183 }
184
185
186 void linkwatch_fire_event(struct net_device *dev)
187 {
188         if (!test_and_set_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state)) {
189                 unsigned long delay;
190
191                 dev_hold(dev);
192
193                 linkwatch_add_event(dev);
194
195                 delay = linkwatch_nextevent - jiffies;
196
197                 /* Minimise down-time: drop delay for up event. */
198                 if (linkwatch_urgent_event(dev))
199                         delay = 0;
200
201                 linkwatch_schedule_work(delay);
202         }
203 }
204
205 EXPORT_SYMBOL(linkwatch_fire_event);