aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2005-06-08 14:56:01 -0700
committerDavid S. Miller <davem@davemloft.net>2005-06-08 14:56:01 -0700
commite3876605450979fe52a1a03e7eb78a89bf59e76a (patch)
treef9231d5bda84f4450583b4fbd64456ba3caeb499 /net/core
parent[NET]: Allow controlling NAPI device weight with sysfs (diff)
downloadlinux-dev-e3876605450979fe52a1a03e7eb78a89bf59e76a.tar.xz
linux-dev-e3876605450979fe52a1a03e7eb78a89bf59e76a.zip
[NET]: Fix sysctl net.core.dev_weight
Changing the sysctl net.core.dev_weight has no effect because the weight of the backlog devices is set during initialization and never changed. This patch propagates any changes to the global value affected by sysctl to the per-cpu devices. It is done every time the packet handler function is run. 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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index f15a3ffff635..ab935778ce81 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1744,6 +1744,7 @@ static int process_backlog(struct net_device *backlog_dev, int *budget)
struct softnet_data *queue = &__get_cpu_var(softnet_data);
unsigned long start_time = jiffies;
+ backlog_dev->weight = weight_p;
for (;;) {
struct sk_buff *skb;
struct net_device *dev;