netdev
[Top] [All Lists]

[PATCH]: fix no_cong_thresh sysctl

To: "David S. Miller" <davem@xxxxxxxxxx>
Subject: [PATCH]: fix no_cong_thresh sysctl
From: Patrick McHardy <kaber@xxxxxxxxx>
Date: Tue, 22 Jul 2003 17:35:16 +0200
Cc: netdev@xxxxxxxxxxx
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030704 Debian/1.4-1
Hi David,
these two patches fix the net.core.no_cong_thresh sysctl, the value
accessed is in fact no_cong.

Best regards,
Patrick
===== 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,
===== 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
<Prev in Thread] Current Thread [Next in Thread>