diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-18 05:39:39 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-18 05:39:39 -0400 |
commit | 49997d75152b3d23c53b0fa730599f2f74c92c65 (patch) | |
tree | 46e93126170d02cfec9505172e545732c1b69656 /net/core | |
parent | a0c80b80e0fb48129e4e9d6a9ede914f9ff1850d (diff) | |
parent | 5b664cb235e97afbf34db9c4d77f08ebd725335e (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
Documentation/powerpc/booting-without-of.txt
drivers/atm/Makefile
drivers/net/fs_enet/fs_enet-main.c
drivers/pci/pci-acpi.c
net/8021q/vlan.c
net/iucv/iucv.c
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 4 | ||||
-rw-r--r-- | net/core/flow.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 32a13772c1cb..e54acde839da 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -4775,8 +4775,8 @@ static int __init net_dev_init(void) | |||
4775 | 4775 | ||
4776 | dev_boot_phase = 0; | 4776 | dev_boot_phase = 0; |
4777 | 4777 | ||
4778 | open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL); | 4778 | open_softirq(NET_TX_SOFTIRQ, net_tx_action); |
4779 | open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL); | 4779 | open_softirq(NET_RX_SOFTIRQ, net_rx_action); |
4780 | 4780 | ||
4781 | hotcpu_notifier(dev_cpu_callback, 0); | 4781 | hotcpu_notifier(dev_cpu_callback, 0); |
4782 | dst_init(); | 4782 | dst_init(); |
diff --git a/net/core/flow.c b/net/core/flow.c index 19991175fdeb..5cf81052d044 100644 --- a/net/core/flow.c +++ b/net/core/flow.c | |||
@@ -298,7 +298,7 @@ void flow_cache_flush(void) | |||
298 | init_completion(&info.completion); | 298 | init_completion(&info.completion); |
299 | 299 | ||
300 | local_bh_disable(); | 300 | local_bh_disable(); |
301 | smp_call_function(flow_cache_flush_per_cpu, &info, 1, 0); | 301 | smp_call_function(flow_cache_flush_per_cpu, &info, 0); |
302 | flow_cache_flush_tasklet((unsigned long)&info); | 302 | flow_cache_flush_tasklet((unsigned long)&info); |
303 | local_bh_enable(); | 303 | local_bh_enable(); |
304 | 304 | ||