diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-08 10:55:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-08 10:55:01 -0500 |
commit | d7fc02c7bae7b1cf69269992cf880a43a350cdaa (patch) | |
tree | a43d56fa72913a1cc98a0bbebe054d08581b3a7c /net/ipv4/sysctl_net_ipv4.c | |
parent | ee1262dbc65ce0b6234a915d8432171e8d77f518 (diff) | |
parent | 28b4d5cc17c20786848cdc07b7ea237a309776bb (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1815 commits)
mac80211: fix reorder buffer release
iwmc3200wifi: Enable wimax core through module parameter
iwmc3200wifi: Add wifi-wimax coexistence mode as a module parameter
iwmc3200wifi: Coex table command does not expect a response
iwmc3200wifi: Update wiwi priority table
iwlwifi: driver version track kernel version
iwlwifi: indicate uCode type when fail dump error/event log
iwl3945: remove duplicated event logging code
b43: fix two warnings
ipw2100: fix rebooting hang with driver loaded
cfg80211: indent regulatory messages with spaces
iwmc3200wifi: fix NULL pointer dereference in pmkid update
mac80211: Fix TX status reporting for injected data frames
ath9k: enable 2GHz band only if the device supports it
airo: Fix integer overflow warning
rt2x00: Fix padding bug on L2PAD devices.
WE: Fix set events not propagated
b43legacy: avoid PPC fault during resume
b43: avoid PPC fault during resume
tcp: fix a timewait refcnt race
...
Fix up conflicts due to sysctl cleanups (dead sysctl_check code and
CTL_UNNUMBERED removed) in
kernel/sysctl_check.c
net/ipv4/sysctl_net_ipv4.c
net/ipv6/addrconf.c
net/sctp/sysctl.c
Diffstat (limited to 'net/ipv4/sysctl_net_ipv4.c')
-rw-r--r-- | net/ipv4/sysctl_net_ipv4.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 300056732953..7e3712ce3994 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c | |||
@@ -569,6 +569,13 @@ static struct ctl_table ipv4_table[] = { | |||
569 | .proc_handler = proc_dointvec, | 569 | .proc_handler = proc_dointvec, |
570 | }, | 570 | }, |
571 | { | 571 | { |
572 | .procname = "tcp_cookie_size", | ||
573 | .data = &sysctl_tcp_cookie_size, | ||
574 | .maxlen = sizeof(int), | ||
575 | .mode = 0644, | ||
576 | .proc_handler = proc_dointvec | ||
577 | }, | ||
578 | { | ||
572 | .procname = "udp_mem", | 579 | .procname = "udp_mem", |
573 | .data = &sysctl_udp_mem, | 580 | .data = &sysctl_udp_mem, |
574 | .maxlen = sizeof(sysctl_udp_mem), | 581 | .maxlen = sizeof(sysctl_udp_mem), |
@@ -660,7 +667,7 @@ static __net_init int ipv4_sysctl_init_net(struct net *net) | |||
660 | struct ctl_table *table; | 667 | struct ctl_table *table; |
661 | 668 | ||
662 | table = ipv4_net_table; | 669 | table = ipv4_net_table; |
663 | if (net != &init_net) { | 670 | if (!net_eq(net, &init_net)) { |
664 | table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL); | 671 | table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL); |
665 | if (table == NULL) | 672 | if (table == NULL) |
666 | goto err_alloc; | 673 | goto err_alloc; |
@@ -691,7 +698,7 @@ static __net_init int ipv4_sysctl_init_net(struct net *net) | |||
691 | return 0; | 698 | return 0; |
692 | 699 | ||
693 | err_reg: | 700 | err_reg: |
694 | if (net != &init_net) | 701 | if (!net_eq(net, &init_net)) |
695 | kfree(table); | 702 | kfree(table); |
696 | err_alloc: | 703 | err_alloc: |
697 | return -ENOMEM; | 704 | return -ENOMEM; |