From f499213a7062f8620fcd547f48fdaa26a830799d Mon Sep 17 00:00:00 2001 From: yinle Date: Fri, 31 Dec 2010 05:46:11 +0000 Subject: [PATCH] FSP/BPA redundancy: add supporting of cec and frame git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8538 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/PPCconn.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/PPCconn.pm b/perl-xCAT/xCAT/PPCconn.pm index 9361e27af..fa78a4630 100644 --- a/perl-xCAT/xCAT/PPCconn.pm +++ b/perl-xCAT/xCAT/PPCconn.pm @@ -95,14 +95,14 @@ sub mkhwconn_parse_args next; } - if ( $nodetype eq 'fsp' and + if ( ($nodetype eq 'fsp' or $nodetype eq 'cec') and $node_parent and $node_parent ne $node) { push @bpa_ctrled_nodes, $node; } - if ( $nodetype eq 'bpa') + if ( ($nodetype eq 'bpa' or $nodetype eq 'frame')) { my $my_frame_bpa_cec = getFrameMembers( $node, $vpdtab, $ppctab); push @frame_members, @$my_frame_bpa_cec;