From b4468034d44de1622c56238508d00ebf0810f325 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 20 Jun 2006 00:53:46 +0000 Subject: [PATCH] Nice catch Nathan. Forat difference between the three lines threw me for a loop, so fix that too. :-) --- lustre/scripts/lmc2csv.pl | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 "") { -- 1.8.3.1