aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index f25d7ecaf035..d95e2626d944 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3421,7 +3421,7 @@ static void net_dma_rebalance(void)
3421 3421
3422 if (net_dma_count == 0) { 3422 if (net_dma_count == 0) {
3423 for_each_online_cpu(cpu) 3423 for_each_online_cpu(cpu)
3424 rcu_assign_pointer(per_cpu(softnet_data.net_dma, cpu), NULL); 3424 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
3425 return; 3425 return;
3426 } 3426 }
3427 3427
@@ -3434,7 +3434,7 @@ static void net_dma_rebalance(void)
3434 + (i < (num_online_cpus() % net_dma_count) ? 1 : 0)); 3434 + (i < (num_online_cpus() % net_dma_count) ? 1 : 0));
3435 3435
3436 while(n) { 3436 while(n) {
3437 per_cpu(softnet_data.net_dma, cpu) = chan; 3437 per_cpu(softnet_data, cpu).net_dma = chan;
3438 cpu = next_cpu(cpu, cpu_online_map); 3438 cpu = next_cpu(cpu, cpu_online_map);
3439 n--; 3439 n--;
3440 } 3440 }