Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754880AbdIFOYd (ORCPT ); Wed, 6 Sep 2017 10:24:33 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:34349 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751236AbdIFOYc (ORCPT ); Wed, 6 Sep 2017 10:24:32 -0400 Subject: Re: [PATCH V13 2/4] powerpc/vphn: Improve recognition of PRRN/VPHN To: Michael Bringmann , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Cc: Michael Ellerman , John Allen References: <067ca4f6-3181-6c6d-32cf-7164fe2c715d@linux.vnet.ibm.com> From: Nathan Fontenot Date: Wed, 6 Sep 2017 09:24:10 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <067ca4f6-3181-6c6d-32cf-7164fe2c715d@linux.vnet.ibm.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-TM-AS-GCONF: 00 x-cbid: 17090614-0008-0000-0000-0000027A2BF5 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007677; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000226; SDB=6.00913105; UDB=6.00458253; IPR=6.00693367; BA=6.00005574; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00017033; XFM=3.00000015; UTC=2017-09-06 14:24:13 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17090614-0009-0000-0000-0000369B7384 Message-Id: <71a117da-fb2d-7e1e-2609-78dfb920d103@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-09-06_05:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1707230000 definitions=main-1709060202 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1481 Lines: 47 On 09/01/2017 10:48 AM, Michael Bringmann wrote: > powerpc/vphn: On Power systems with shared configurations of CPUs > and memory, there are some issues with the association of additional > CPUs and memory to nodes when hot-adding resources. This patch > updates the initialization checks to independently recognize PRRN > or VPHN support. > > Signed-off-by: Michael Bringmann > --- > Changes in V13: > -- Split patch to improve review > --- > arch/powerpc/mm/numa.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c > index 312f6ee..c08d736 100644 > --- a/arch/powerpc/mm/numa.c > +++ b/arch/powerpc/mm/numa.c > @@ -1543,7 +1543,8 @@ int start_topology_update(void) > rc = of_reconfig_notifier_register(&dt_update_nb); > #endif > } > - } else if (firmware_has_feature(FW_FEATURE_VPHN) && > + } > + if (firmware_has_feature(FW_FEATURE_VPHN) && > lppaca_shared_proc(get_lppaca())) { > if (!vphn_enabled) { > vphn_enabled = 1; In patch 1/4, you removed the setting of prrn_enabled and vphn_enabled to 0. It seems like that update would be part of this patch. -Nathan > @@ -1568,7 +1569,8 @@ int stop_topology_update(void) > #ifdef CONFIG_SMP > rc = of_reconfig_notifier_unregister(&dt_update_nb); > #endif > - } else if (vphn_enabled) { > + } > + if (vphn_enabled) { > vphn_enabled = 0;> rc = del_timer_sync(&topology_timer); > } >