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/lowcomms.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/lowcomms.c')
-rw-r--r-- | fs/dlm/lowcomms.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index 09b0124f7fc4..cdd168e4bf45 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c | |||
@@ -1063,6 +1063,27 @@ static void dealloc_nodeinfo(void) | |||
1063 | } | 1063 | } |
1064 | } | 1064 | } |
1065 | 1065 | ||
1066 | int dlm_lowcomms_close(int nodeid) | ||
1067 | { | ||
1068 | struct nodeinfo *ni; | ||
1069 | |||
1070 | ni = nodeid2nodeinfo(nodeid, 0); | ||
1071 | if (!ni) | ||
1072 | return -1; | ||
1073 | |||
1074 | spin_lock(&ni->lock); | ||
1075 | if (ni->assoc_id) { | ||
1076 | ni->assoc_id = 0; | ||
1077 | /* Don't send shutdown here, sctp will just queue it | ||
1078 | till the node comes back up! */ | ||
1079 | } | ||
1080 | spin_unlock(&ni->lock); | ||
1081 | |||
1082 | clean_one_writequeue(ni); | ||
1083 | clear_bit(NI_INIT_PENDING, &ni->flags); | ||
1084 | return 0; | ||
1085 | } | ||
1086 | |||
1066 | static int write_list_empty(void) | 1087 | static int write_list_empty(void) |
1067 | { | 1088 | { |
1068 | int status; | 1089 | int status; |