summaryrefslogtreecommitdiffstats
path: root/fs/ceph/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r--fs/ceph/super.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index a828943296c5..6d02a166f8ff 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -602,13 +602,8 @@ int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid)
{
if (client->have_fsid) {
if (ceph_fsid_compare(&client->fsid, fsid)) {
- print_hex_dump(KERN_ERR, "this fsid: ",
- DUMP_PREFIX_NONE, 16, 1,
- (void *)fsid, 16, 0);
- print_hex_dump(KERN_ERR, " old fsid: ",
- DUMP_PREFIX_NONE, 16, 1,
- (void *)&client->fsid, 16, 0);
- pr_err("fsid mismatch\n");
+ pr_err("bad fsid, had " FSID_FORMAT " got " FSID_FORMAT,
+ PR_FSID(&client->fsid), PR_FSID(fsid));
return -1;
}
} else {
OpenPOWER on IntegriCloud