netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]: fix no_cong_thresh sysctl
@ 2003-07-22 15:35 Patrick McHardy
  2003-07-23  6:37 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2003-07-22 15:35 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev

[-- Attachment #1: Type: text/plain, Size: 130 bytes --]

Hi David,
these two patches fix the net.core.no_cong_thresh sysctl, the value
accessed is in fact no_cong.

Best regards,
Patrick

[-- Attachment #2: linux-2.4.21-sysctl_net_core-no_cong_thresh.diff --]
[-- Type: text/plain, Size: 482 bytes --]

===== net/core/sysctl_net_core.c 1.4 vs edited =====
--- 1.4/net/core/sysctl_net_core.c	Wed Aug  7 18:17:09 2002
+++ edited/net/core/sysctl_net_core.c	Tue Jul 22 16:50:29 2003
@@ -55,7 +55,7 @@
 	 &netdev_max_backlog, sizeof(int), 0644, NULL,
 	 &proc_dointvec},
 	{NET_CORE_NO_CONG_THRESH, "no_cong_thresh",
-	 &no_cong, sizeof(int), 0644, NULL,
+	 &no_cong_thresh, sizeof(int), 0644, NULL,
 	 &proc_dointvec},
 	{NET_CORE_NO_CONG, "no_cong",
 	 &no_cong, sizeof(int), 0644, NULL,

[-- Attachment #3: linux-2.5.75-sysctl_net_core-no_cong_thresh.diff --]
[-- Type: text/plain, Size: 401 bytes --]

===== net/core/sysctl_net_core.c 1.4 vs edited =====
--- 1.4/net/core/sysctl_net_core.c	Wed Apr 30 08:44:14 2003
+++ edited/net/core/sysctl_net_core.c	Tue Jul 22 16:51:35 2003
@@ -86,7 +86,7 @@
 	{
 		.ctl_name	= NET_CORE_NO_CONG_THRESH,
 		.procname	= "no_cong_thresh",
-		.data		= &no_cong,
+		.data		= &no_cong_thresh,
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= &proc_dointvec

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-07-23  6:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-22 15:35 [PATCH]: fix no_cong_thresh sysctl Patrick McHardy
2003-07-23  6:37 ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).