[Ocfs2-tools-devel] [PATCH 26/30] dx_dirs: Improve information displayed by dump_dx_root()

Mark Fasheh mfasheh at suse.com
Wed Apr 28 18:26:31 PDT 2010


From: Coly Li <coly.li at suse.de>

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 <coly.li at suse.de>
Cc: Mark Fasheh <mfasheh at suse.com>
Signed-off-by: Tao Ma <tao.ma at oracle.com>
---
 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.6.4.2




More information about the Ocfs2-tools-devel mailing list