Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756756AbdLVWxu (ORCPT ); Fri, 22 Dec 2017 17:53:50 -0500 Received: from mail-ot0-f194.google.com ([74.125.82.194]:46589 "EHLO mail-ot0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756209AbdLVWxp (ORCPT ); Fri, 22 Dec 2017 17:53:45 -0500 X-Google-Smtp-Source: ACJfBotIqXwqRhl2g7/+mZhEiD4JNQakuphhUiYONAYin/lwxi29NDBDY6c4AL723b9MvZWgDL+8Zr6NdHbBuakNlw8= MIME-Version: 1.0 In-Reply-To: <39cbe02a-d309-443d-54c9-678a0799342d@gmail.com> References: <20171214021019.13579-1-ross.zwisler@linux.intel.com> <20171214130032.GK16951@dhcp22.suse.cz> <20171218203547.GA2366@linux.intel.com> <20171220181937.GB12236@bombadil.infradead.org> <2da89d31-27a3-34ab-2dbb-92403c8215ec@intel.com> <20171220211649.GA32200@bombadil.infradead.org> <20171220212408.GA8308@linux.intel.com> <20171220224105.GA27258@linux.intel.com> <39cbe02a-d309-443d-54c9-678a0799342d@gmail.com> From: Dan Williams Date: Fri, 22 Dec 2017 14:53:42 -0800 Message-ID: Subject: Re: [PATCH v3 0/3] create sysfs representation of ACPI HMAT To: Brice Goglin Cc: Ross Zwisler , Matthew Wilcox , Dave Hansen , Michal Hocko , "linux-kernel@vger.kernel.org" , "Anaczkowski, Lukasz" , "Box, David E" , "Kogut, Jaroslaw" , "Koss, Marcin" , "Koziej, Artur" , "Lahtinen, Joonas" , "Moore, Robert" , "Nachimuthu, Murugasamy" , "Odzioba, Lukasz" , "Rafael J. Wysocki" , "Rafael J. Wysocki" , "Schmauss, Erik" , "Verma, Vishal L" , "Zheng, Lv" , Andrew Morton , Balbir Singh , Jerome Glisse , John Hubbard , Len Brown , Tim Chen , devel@acpica.org, Linux ACPI , Linux MM , "linux-nvdimm@lists.01.org" , Linux API , linuxppc-dev Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.home.local id vBMMs3ho030870 Content-Length: 2245 Lines: 45 On Thu, Dec 21, 2017 at 12:31 PM, Brice Goglin wrote: > Le 20/12/2017 à 23:41, Ross Zwisler a écrit : [..] > Hello > > I can confirm that HPC runtimes are going to use these patches (at least > all runtimes that use hwloc for topology discovery, but that's the vast > majority of HPC anyway). > > We really didn't like KNL exposing a hacky SLIT table [1]. We had to > explicitly detect that specific crazy table to find out which NUMA nodes > were local to which cores, and to find out which NUMA nodes were > HBM/MCDRAM or DDR. And then we had to hide the SLIT values to the > application because the reported latencies didn't match reality. Quite > annoying. > > With Ross' patches, we can easily get what we need: > * which NUMA nodes are local to which CPUs? /sys/devices/system/node/ > can only report a single local node per CPU (doesn't work for KNL and > upcoming architectures with HBM+DDR+...) > * which NUMA nodes are slow/fast (for both bandwidth and latency) > And we can still look at SLIT under /sys/devices/system/node if really > needed. > > And of course having this in sysfs is much better than parsing ACPI > tables that are only accessible to root :) On this point, it's not clear to me that we should allow these sysfs entries to be world readable. Given /proc/iomem now hides physical address information from non-root we at least need to be careful not to undo that with new sysfs HMAT attributes. Once you need to be root for this info, is parsing binary HMAT vs sysfs a blocker for the HPC use case? Perhaps we can enlist /proc/iomem or a similar enumeration interface to tell userspace the NUMA node and whether the kernel thinks it has better or worse performance characteristics relative to base system-RAM, i.e. new IORES_DESC_* values. I'm worried that if we start publishing absolute numbers in sysfs userspace will default to looking for specific magic numbers in sysfs vs asking the kernel for memory that has performance characteristics relative to base "System RAM". In other words the absolute performance information that the HMAT publishes is useful to the kernel, but it's not clear that userspace needs that vs a relative indicator for making NUMA node preference decisions.