From 44b512e936211cf025a3ce759c797e37a912c65e Mon Sep 17 00:00:00 2001 From: adilger Date: Thu, 24 Feb 2005 23:58:12 +0000 Subject: [PATCH] Branch: b1_4 Be clearer when printing out the default directory striping pattern. --- lustre/utils/liblustreapi.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lustre/utils/liblustreapi.c b/lustre/utils/liblustreapi.c index 1317147..3e01b25 100644 --- a/lustre/utils/liblustreapi.c +++ b/lustre/utils/liblustreapi.c @@ -249,9 +249,11 @@ void lov_dump_user_lmm_v1(struct lov_user_md_v1 *lum, char *dname, char *fname, /* if it's a directory */ if (*fname == '\0') { if (header && (obdstripe == 1)) { - printf("count: %d, size: %d, offset: %d\n\n", + printf("default lmm_stripe_count: %u\n" + "default lmm_stripe_size: %u\n" + "default lmm_stripe_offset: %u\n", lum->lmm_stripe_count, lum->lmm_stripe_size, - (short int)lum->lmm_stripe_offset); + (int)lum->lmm_stripe_offset); } return; } -- 1.8.3.1