diff options
author | Sunil Mushran <sunil.mushran@oracle.com> | 2011-07-24 10:24:54 -0700 |
---|---|---|
committer | Sunil Mushran <sunil.mushran@oracle.com> | 2011-07-24 10:24:54 -0700 |
commit | 394eb3d38a3ecc549cc34a3040103a9164be516b (patch) | |
tree | c373152dde8a2aae2a0f444f05021c6fef186fb1 /fs/ocfs2 | |
parent | 8decab3c8dadcdf4f54ffb30df6e6f67b398b6e0 (diff) | |
download | blackbird-obmc-linux-394eb3d38a3ecc549cc34a3040103a9164be516b.tar.gz blackbird-obmc-linux-394eb3d38a3ecc549cc34a3040103a9164be516b.zip |
ocfs2: Clean up messages in stack_o2cb.c
o2cb messages needed a facelift.
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/stack_o2cb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c index 19965b00c43c..be935d89a4e8 100644 --- a/fs/ocfs2/stack_o2cb.c +++ b/fs/ocfs2/stack_o2cb.c @@ -263,8 +263,8 @@ static void o2dlm_eviction_cb(int node_num, void *data) { struct ocfs2_cluster_connection *conn = data; - mlog(ML_NOTICE, "o2dlm has evicted node %d from group %.*s\n", - node_num, conn->cc_namelen, conn->cc_name); + printk(KERN_NOTICE "o2cb: o2dlm has evicted node %d from domain %.*s\n", + node_num, conn->cc_namelen, conn->cc_name); conn->cc_recovery_handler(node_num, conn->cc_recovery_data); } |