Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
net: rps: fix uninitialized symbol warning
Browse files Browse the repository at this point in the history
This patch fixes uninitialized symbol warning that
got introduced by the following commit
773fc8f ("net: rps: send out pending IPI's on CPU hotplug")

Signed-off-by: Ashwanth Goli <ashwanth@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Ashwanth Goli authored and davem330 committed Jun 13, 2017
1 parent 6964e53 commit 97d8b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/core/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -8203,7 +8203,7 @@ static int dev_cpu_dead(unsigned int oldcpu)
struct sk_buff **list_skb;
struct sk_buff *skb;
unsigned int cpu;
struct softnet_data *sd, *oldsd, *remsd;
struct softnet_data *sd, *oldsd, *remsd = NULL;

local_irq_disable();
cpu = smp_processor_id();
Expand Down

0 comments on commit 97d8b6e

Please sign in to comment.