From b89abbd6ed452086a186b9516956e7ebfb0a373f Mon Sep 17 00:00:00 2001 From: jjhua Date: Tue, 1 Nov 2011 02:03:30 +0000 Subject: [PATCH] And the 0x02 is used with Chip Pump Mode which is not used by customers. So I change the default value of Memory Interleaving to 1 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10937 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/FSPvm.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/FSPvm.pm b/perl-xCAT/xCAT/FSPvm.pm index c2769195b..c7813481b 100644 --- a/perl-xCAT/xCAT/FSPvm.pm +++ b/perl-xCAT/xCAT/FSPvm.pm @@ -201,7 +201,7 @@ sub chvm_parse_args { return(usage( "Invalid entry: $opt{m}.\n For Power 775, the pending memory interleaving mode only could be interleaved(or 1), or non-interleaved(or 2)." )); } } else { - $opt{m} = 2 ;# non-interleaved, which is the default + $opt{m} = 1 ;# interleaved, which is the default } my @ratio = (1, 2, 3, 4, 5);