patch-2.4.7 linux/net/core/dev.c
Next file: linux/net/core/dv.c
Previous file: linux/net/atm/proc.c
Back to the patch index
Back to the overall index
- Lines: 40
- Date:
Sun Jul 15 16:29:40 2001
- Orig file:
v2.4.6/linux/net/core/dev.c
- Orig date:
Tue Jul 3 17:08:22 2001
diff -u --recursive --new-file v2.4.6/linux/net/core/dev.c linux/net/core/dev.c
@@ -1217,6 +1217,8 @@
enqueue:
dev_hold(skb->dev);
__skb_queue_tail(&queue->input_pkt_queue,skb);
+
+ /* Runs from irqs or BH's, no need to wake BH */
__cpu_raise_softirq(this_cpu, NET_RX_SOFTIRQ);
local_irq_restore(flags);
#ifndef OFFLINE_SAMPLE
@@ -1527,6 +1529,8 @@
local_irq_disable();
netdev_rx_stat[this_cpu].time_squeeze++;
+
+ /* This already runs in BH context, no need to wake up BH's */
__cpu_raise_softirq(this_cpu, NET_RX_SOFTIRQ);
local_irq_enable();
@@ -2650,10 +2654,6 @@
if (!dev_boot_phase)
return 0;
-#ifdef CONFIG_NET_SCHED
- pktsched_init();
-#endif
-
#ifdef CONFIG_NET_DIVERT
dv_init();
#endif /* CONFIG_NET_DIVERT */
@@ -2767,6 +2767,10 @@
dst_init();
dev_mcast_init();
+
+#ifdef CONFIG_NET_SCHED
+ pktsched_init();
+#endif
/*
* Initialise network devices
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)