From a3a8830774c41b90285d77ccc04a035c944080e9 Mon Sep 17 00:00:00 2001 From: Coly Li Date: Mon, 26 Apr 2010 22:36:38 +0800 Subject: [PATCH 26/30] dx_dirs: Improve information displayed by dump_dx_root() If dr->dr_suballoc_slot is OCFS2_INVALID_SLOT (which should not happen), should not display "Global", because there is not "Global" conception for dx root allocation slot. This patch fixes the display by "Invalid Slot". Signed-off-by: Coly Li Cc: Mark Fasheh Cc: Tao Ma --- debugfs.ocfs2/dump.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/debugfs.ocfs2/dump.c b/debugfs.ocfs2/dump.c index d55fc0e..6ad202c 100644 --- a/debugfs.ocfs2/dump.c +++ b/debugfs.ocfs2/dump.c @@ -593,7 +593,7 @@ void dump_dx_root(FILE *out, struct ocfs2_dx_root_block *dr) (uint64_t)dr->dr_dir_blkno); if (dr->dr_suballoc_slot == (uint16_t)OCFS2_INVALID_SLOT) - strcpy(tmp_str, "Global"); + strcpy(tmp_str, "Invalid Slot"); else sprintf(tmp_str, "%d", dr->dr_suballoc_slot); fprintf(out, "\tSub Alloc Slot: %s Sub Alloc Bit: %u " -- 1.7.0.2