This patch adds a command named "treedump" to the xfs_db to dump the blocks of the btree in batch, below is an example usage: sudo xfs_db -r -c "agf 0" -c "treedump -b" /dev/sda1 The patch calls the "print" command from code to dump the contents of the blocks instead of reinventing the wheel for printing. db/Makefile | 4 +- db/command.c | 1 + db/treedump.c | 306 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ db/treedump.h | 20 ++++ 4 files changed, 329 insertions(+), 2 deletions(-) create mode 100644 db/treedump.c create mode 100644 db/treedump.h Thanks Shan Hai -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html