diff options
author | Mark Fasheh <mfasheh@suse.com> | 2008-01-29 19:59:56 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-04-18 11:56:04 -0400 |
commit | 0abd6d1803b01c741430af270026d1d95a103d9c (patch) | |
tree | c1aca3d286990be6f9043e28ad0bacaf3443ef54 /fs/ocfs2/dlmglue.c | |
parent | 6953b4c008628b945bfe0cee97f6e78a98773859 (diff) |
ocfs2: Fill node number during cluster stack init
It doesn't make sense to query for a node number before connecting to the
cluster stack. This should be safe to do because node_num is only just
printed,
and we're actually only moving the setting of node num a small amount
further in the mount process.
[ Disconnect when node query fails -- Joel ]
Reviewed-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/dlmglue.c')
-rw-r--r-- | fs/ocfs2/dlmglue.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index 05fd016ba4bf..c7653bb343e1 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c | |||
@@ -2459,8 +2459,10 @@ int ocfs2_dlm_init(struct ocfs2_super *osb) | |||
2459 | 2459 | ||
2460 | mlog_entry_void(); | 2460 | mlog_entry_void(); |
2461 | 2461 | ||
2462 | if (ocfs2_mount_local(osb)) | 2462 | if (ocfs2_mount_local(osb)) { |
2463 | osb->node_num = 0; | ||
2463 | goto local; | 2464 | goto local; |
2465 | } | ||
2464 | 2466 | ||
2465 | status = ocfs2_dlm_init_debug(osb); | 2467 | status = ocfs2_dlm_init_debug(osb); |
2466 | if (status < 0) { | 2468 | if (status < 0) { |
@@ -2487,6 +2489,15 @@ int ocfs2_dlm_init(struct ocfs2_super *osb) | |||
2487 | goto bail; | 2489 | goto bail; |
2488 | } | 2490 | } |
2489 | 2491 | ||
2492 | status = ocfs2_cluster_this_node(&osb->node_num); | ||
2493 | if (status < 0) { | ||
2494 | mlog_errno(status); | ||
2495 | mlog(ML_ERROR, | ||
2496 | "could not find this host's node number\n"); | ||
2497 | ocfs2_cluster_disconnect(conn); | ||
2498 | goto bail; | ||
2499 | } | ||
2500 | |||
2490 | local: | 2501 | local: |
2491 | ocfs2_super_lock_res_init(&osb->osb_super_lockres, osb); | 2502 | ocfs2_super_lock_res_init(&osb->osb_super_lockres, osb); |
2492 | ocfs2_rename_lock_res_init(&osb->osb_rename_lockres, osb); | 2503 | ocfs2_rename_lock_res_init(&osb->osb_rename_lockres, osb); |