aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorxiao jin <jin.xiao@intel.com>2014-04-25 08:53:29 +0800
committerDavid S. Miller <davem@davemloft.net>2014-04-26 12:52:28 -0400
commit851bdd11ca8b855ee946f50dac0850a4bec875c9 (patch)
tree54a7f137c47a16fb76a92253f102e4bc6179f994 /net
parentnet_namespace: trivial cleanup (diff)
downloadlinux-dev-851bdd11ca8b855ee946f50dac0850a4bec875c9.tar.xz
linux-dev-851bdd11ca8b855ee946f50dac0850a4bec875c9.zip
inetpeer_gc_worker: trivial cleanup
Do not initialize list twice. list_replace_init() already takes care of initializing list. We don't need to initialize it with LIST_HEAD() beforehand. Signed-off-by: xiao jin <jin.xiao@intel.com> Reviewed-by: David Cohen <david.a.cohen@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/inetpeer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c
index 48f424465112..c98cf141f4ed 100644
--- a/net/ipv4/inetpeer.c
+++ b/net/ipv4/inetpeer.c
@@ -120,7 +120,7 @@ int inet_peer_maxttl __read_mostly = 10 * 60 * HZ; /* usual time to live: 10 min
static void inetpeer_gc_worker(struct work_struct *work)
{
struct inet_peer *p, *n, *c;
- LIST_HEAD(list);
+ struct list_head list;
spin_lock_bh(&gc_lock);
list_replace_init(&gc_list, &list);