From: adilger Date: Wed, 3 Sep 2008 19:25:28 +0000 (+0000) Subject: Branch b1_6 X-Git-Tag: GIT_EPOCH_B_RELEASE_1_6_7~2^3~283 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ff63a53980c36e665a462c046419ecb3c8e94037;p=fs%2Flustre-release.git Branch b1_6 Fix up console message to print previous default stripe size. --- diff --git a/lustre/lov/lov_obd.c b/lustre/lov/lov_obd.c index 3525a18..32f6486 100644 --- a/lustre/lov/lov_obd.c +++ b/lustre/lov/lov_obd.c @@ -814,8 +814,8 @@ static void __lov_del_obd(struct obd_device *obd, __u32 index) void lov_fix_desc_stripe_size(__u64 *val) { if (*val < PTLRPC_MAX_BRW_SIZE) { - LCONSOLE_WARN("Increasing default stripe size to min %u\n", - PTLRPC_MAX_BRW_SIZE); + LCONSOLE_WARN("Increasing default stripe size from "LPU64 + " to %u\n", *val, PTLRPC_MAX_BRW_SIZE); *val = PTLRPC_MAX_BRW_SIZE; } else if (*val & (LOV_MIN_STRIPE_SIZE - 1)) { *val &= ~(LOV_MIN_STRIPE_SIZE - 1);