aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2005-06-23 23:08:59 -0400
committerDavid S. Miller <davem@davemloft.net>2005-06-23 23:08:59 -0400
commitc1ebcdb8c422cd73f54bcd2b9953e443a47667e5 (patch)
tree312664836ac20509cc15609b8b0c7d583e9fe32d /net/core
parent16822e62053e73fa7def9decc38a7e287d27d980 (diff)
[NET]: Remove obsolete fastroute stats.
Remove last vestiages of fastroute code that is no longer used. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c10
-rw-r--r--net/core/sysctl_net_core.c1
2 files changed, 2 insertions, 9 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index ab935778ce81..4f1ae2efe872 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2056,14 +2056,8 @@ static int softnet_seq_show(struct seq_file *seq, void *v)
2056 2056
2057 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n", 2057 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
2058 s->total, s->dropped, s->time_squeeze, s->throttled, 2058 s->total, s->dropped, s->time_squeeze, s->throttled,
2059 s->fastroute_hit, s->fastroute_success, s->fastroute_defer, 2059 0, 0, 0, 0, /* was fastroute */
2060 s->fastroute_deferred_out, 2060 s->cpu_collision );
2061#if 0
2062 s->fastroute_latency_reduction
2063#else
2064 s->cpu_collision
2065#endif
2066 );
2067 return 0; 2061 return 0;
2068} 2062}
2069 2063
diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c
index 880a88815211..76e9987474ca 100644
--- a/net/core/sysctl_net_core.c
+++ b/net/core/sysctl_net_core.c
@@ -18,7 +18,6 @@ extern int no_cong_thresh;
18extern int no_cong; 18extern int no_cong;
19extern int lo_cong; 19extern int lo_cong;
20extern int mod_cong; 20extern int mod_cong;
21extern int netdev_fastroute;
22extern int net_msg_cost; 21extern int net_msg_cost;
23extern int net_msg_burst; 22extern int net_msg_burst;
24 23