From: brian Date: Tue, 20 Jun 2006 00:53:46 +0000 (+0000) Subject: Nice catch Nathan. Forat difference between the three lines threw me for a X-Git-Tag: v1_7_100~1^90~8^2~96 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=b4468034d44de1622c56238508d00ebf0810f325;p=fs%2Flustre-release.git Nice catch Nathan. Forat difference between the three lines threw me for a loop, so fix that too. :-) --- diff --git a/lustre/scripts/lmc2csv.pl b/lustre/scripts/lmc2csv.pl index d490dcc..cabd2ce 100644 --- a/lustre/scripts/lmc2csv.pl +++ b/lustre/scripts/lmc2csv.pl @@ -172,15 +172,13 @@ foreach my $mds (@{$objs{"mds"}}) { my $lov = $mds->{"lov"}; my $mkfs_options=""; if (defined($lov->{"stripe_sz"})) { - $mkfs_options .= "default_stripe_size=" . $lov->{"stripe_sz"} . ","; + $mkfs_options .= "lov.stripe.size=" . $lov->{"stripe_sz"} . ","; } if (defined($lov->{"stripe_cnt"})) { - $mkfs_options .= "lov.stripe.count=" . - $lov->{"stripe_cnt"} . ","; + $mkfs_options .= "lov.stripe.count=" . $lov->{"stripe_cnt"} . ","; } if (defined($lov->{"stripe_pattern"})) { - $mkfs_options .= "lov.stripe.pattern=" . - $lov->{"stripe_pattern"} . ","; + $mkfs_options .= "lov.stripe.pattern=" . $lov->{"stripe_pattern"} . ","; } chop($mkfs_options); if ($mkfs_options ne "") {