diff options
author | Sunil Mushran | 2008-03-01 23:04:24 +0100 |
---|---|---|
committer | Mark Fasheh | 2008-03-10 23:14:14 +0100 |
commit | 535f7026fddafce6d0a0524db01a432c23a0a7b4 (patch) | |
tree | 1ff54fc43e58eca485e96dc444ca0987d24a18e9 /fs/ocfs2 | |
parent | ocfs2/dlm: Add missing dlm_lockres_put()s (diff) | |
download | kernel-qcow2-linux-535f7026fddafce6d0a0524db01a432c23a0a7b4.tar.gz kernel-qcow2-linux-535f7026fddafce6d0a0524db01a432c23a0a7b4.tar.xz kernel-qcow2-linux-535f7026fddafce6d0a0524db01a432c23a0a7b4.zip |
ocfs2/dlm: Print message showing the recovery master
Knowing the dlm recovery master helps in debugging recovery
issues. This patch prints a message on the recovery master node.
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/dlm/dlmrecovery.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c index f94683552420..bcb9260c3735 100644 --- a/fs/ocfs2/dlm/dlmrecovery.c +++ b/fs/ocfs2/dlm/dlmrecovery.c @@ -519,9 +519,9 @@ static int dlm_do_recovery(struct dlm_ctxt *dlm) return 0; master_here: - mlog(0, "(%d) mastering recovery of %s:%u here(this=%u)!\n", - task_pid_nr(dlm->dlm_reco_thread_task), - dlm->name, dlm->reco.dead_node, dlm->node_num); + mlog(ML_NOTICE, "(%d) Node %u is the Recovery Master for the Dead Node " + "%u for Domain %s\n", task_pid_nr(dlm->dlm_reco_thread_task), + dlm->node_num, dlm->reco.dead_node, dlm->name); status = dlm_remaster_locks(dlm, dlm->reco.dead_node); if (status < 0) { |