projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e75db2
)
tipc: delete extra semicolon blocking node deletion
author
Paul Gortmaker
<paul.gortmaker@windriver.com>
Mon, 14 Mar 2011 16:03:44 +0000
(12:03 -0400)
committer
Paul Gortmaker
<paul.gortmaker@windriver.com>
Mon, 14 Mar 2011 16:21:12 +0000
(12:21 -0400)
Remove bogus semicolon only recently introduced in
34e46258cb9f5
that blocks cleanup of nodes for N>1 on shutdown.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/tipc/net.c
patch
|
blob
|
history
diff --git
a/net/tipc/net.c
b/net/tipc/net.c
index
8fbc7e6
..
68b3dd6
100644
(file)
--- a/
net/tipc/net.c
+++ b/
net/tipc/net.c
@@
-221,7
+221,7
@@
void tipc_net_stop(void)
tipc_bearer_stop();
tipc_mode = TIPC_NODE_MODE;
tipc_bclink_stop();
- list_for_each_entry_safe(node, t_node, &tipc_node_list, list)
;
+ list_for_each_entry_safe(node, t_node, &tipc_node_list, list)
tipc_node_delete(node);
write_unlock_bh(&tipc_net_lock);
info("Left network mode\n");