Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315365
b: refs/heads/master
c: f705ab9
h: refs/heads/master
i:
  315363: 63b5a55
v: v3
  • Loading branch information
Paul Gortmaker committed Jul 12, 2012
1 parent 06c4a42 commit 16eee8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e9cab58e8e0b5e52af28145ffa70de329adc459
refs/heads/master: f705ab956b3a0377181c9d73b235ad5bf4020937
6 changes: 4 additions & 2 deletions trunk/net/tipc/name_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,10 @@ void tipc_nametbl_stop(void)
/* Verify name table is empty, then release it */
write_lock_bh(&tipc_nametbl_lock);
for (i = 0; i < tipc_nametbl_size; i++) {
if (!hlist_empty(&table.types[i]))
err("tipc_nametbl_stop(): hash chain %u is non-null\n", i);
if (hlist_empty(&table.types[i]))
continue;
err("tipc_nametbl_stop(): orphaned hash chain detected\n");
break;
}
kfree(table.types);
table.types = NULL;
Expand Down

0 comments on commit 16eee8b

Please sign in to comment.