diff options
author | David Teigland <teigland@redhat.com> | 2006-04-28 10:50:41 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-04-28 10:50:41 -0400 |
commit | 1c032c03117c014512195f2e33c3af999f132146 (patch) | |
tree | 2032d1965331fb1882fdb306c678cf4497b35c10 /fs/dlm/config.c | |
parent | ae118962b9f8572b5ff00e85c053dbeede2314db (diff) |
[DLM] PATCH 2/3 dlm: lowcomms close
When a node is removed from a lockspace configuration, close our
connection to it, clearing any remaining messages for it.
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/dlm/config.c')
-rw-r--r-- | fs/dlm/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/dlm/config.c b/fs/dlm/config.c index 87df9616415e..88553054bbfa 100644 --- a/fs/dlm/config.c +++ b/fs/dlm/config.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <net/sock.h> | 17 | #include <net/sock.h> |
18 | 18 | ||
19 | #include "config.h" | 19 | #include "config.h" |
20 | #include "lowcomms.h" | ||
20 | 21 | ||
21 | /* | 22 | /* |
22 | * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid | 23 | * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid |
@@ -429,6 +430,7 @@ static void drop_comm(struct config_group *g, struct config_item *i) | |||
429 | struct comm *cm = to_comm(i); | 430 | struct comm *cm = to_comm(i); |
430 | if (local_comm == cm) | 431 | if (local_comm == cm) |
431 | local_comm = NULL; | 432 | local_comm = NULL; |
433 | dlm_lowcomms_close(cm->nodeid); | ||
432 | while (cm->addr_count--) | 434 | while (cm->addr_count--) |
433 | kfree(cm->addr[cm->addr_count]); | 435 | kfree(cm->addr[cm->addr_count]); |
434 | config_item_put(i); | 436 | config_item_put(i); |