diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2005-06-23 20:08:59 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-06-23 20:08:59 -0700 |
commit | c1ebcdb8c422cd73f54bcd2b9953e443a47667e5 (patch) | |
tree | 312664836ac20509cc15609b8b0c7d583e9fe32d /net | |
parent | 16822e62053e73fa7def9decc38a7e287d27d980 (diff) | |
download | blackbird-obmc-linux-c1ebcdb8c422cd73f54bcd2b9953e443a47667e5.tar.gz blackbird-obmc-linux-c1ebcdb8c422cd73f54bcd2b9953e443a47667e5.zip |
[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')
-rw-r--r-- | net/core/dev.c | 10 | ||||
-rw-r--r-- | net/core/sysctl_net_core.c | 1 |
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) seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n", s->total, s->dropped, s->time_squeeze, s->throttled, - s->fastroute_hit, s->fastroute_success, s->fastroute_defer, - s->fastroute_deferred_out, -#if 0 - s->fastroute_latency_reduction -#else - s->cpu_collision -#endif - ); + 0, 0, 0, 0, /* was fastroute */ + s->cpu_collision ); return 0; } 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; extern int no_cong; extern int lo_cong; extern int mod_cong; -extern int netdev_fastroute; extern int net_msg_cost; extern int net_msg_burst; |