[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1282078816-11844-12-git-send-email-paul.gortmaker@windriver.com>
Date: Tue, 17 Aug 2010 17:00:13 -0400
From: Paul Gortmaker <paul.gortmaker@...driver.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org, allan.stephens@...driver.com
Subject: [PATCH net-next 11/14] tipc: Eliminate useless linked list initialization
From: Allan Stephens <allan.stephens@...driver.com>
Eliminate the initialization of the port_list field of a newly created
TIPC port, since the port is immediately added to TIPC's global list
of ports (which alters the port_list field).
Signed-off-by: Allan Stephens <allan.stephens@...driver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@...driver.com>
---
net/tipc/port.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/net/tipc/port.c b/net/tipc/port.c
index ebcbc21..4f4f763 100644
--- a/net/tipc/port.c
+++ b/net/tipc/port.c
@@ -253,7 +253,6 @@ struct tipc_port *tipc_createport_raw(void *usr_handle,
k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
spin_lock_bh(&tipc_port_list_lock);
INIT_LIST_HEAD(&p_ptr->publications);
- INIT_LIST_HEAD(&p_ptr->port_list);
list_add_tail(&p_ptr->port_list, &ports);
spin_unlock_bh(&tipc_port_list_lock);
return &(p_ptr->publ);
--
1.7.2.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists