diff options
| -rw-r--r-- | net/tipc/name_table.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c index 13fb9d559ea5..cade0acda4ef 100644 --- a/net/tipc/name_table.c +++ b/net/tipc/name_table.c | |||
| @@ -940,8 +940,10 @@ void tipc_nametbl_stop(void) | |||
| 940 | /* Verify name table is empty, then release it */ | 940 | /* Verify name table is empty, then release it */ |
| 941 | write_lock_bh(&tipc_nametbl_lock); | 941 | write_lock_bh(&tipc_nametbl_lock); |
| 942 | for (i = 0; i < tipc_nametbl_size; i++) { | 942 | for (i = 0; i < tipc_nametbl_size; i++) { |
| 943 | if (!hlist_empty(&table.types[i])) | 943 | if (hlist_empty(&table.types[i])) |
| 944 | err("tipc_nametbl_stop(): hash chain %u is non-null\n", i); | 944 | continue; |
| 945 | err("tipc_nametbl_stop(): orphaned hash chain detected\n"); | ||
| 946 | break; | ||
| 945 | } | 947 | } |
| 946 | kfree(table.types); | 948 | kfree(table.types); |
| 947 | table.types = NULL; | 949 | table.types = NULL; |
