[PATCH v4] tools/power turbostat: Fix RAPL summary collection on AMD processors

2021-03-30 Thread Terry Bowman
turbostat: Enable accumulate RAPL display") Signed-off-by: Terry Bowman Cc: Len Brown Cc: linux...@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- tools/power/x86/turbostat/turbostat.c | 61 --- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/

tools/power turbostat: Fix RAPL summary collection on AMD processors

2021-03-30 Thread Terry Bowman
turbostat: Enable accumulate RAPL display") Signed-off-by: Terry Bowman Cc: Len Brown Cc: linux...@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- tools/power/x86/turbostat/turbostat.c | 61 --- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/

[PATCH v1 1/1] tools/power turbostat: Fix RAPL summary collection on AMD processors

2021-03-31 Thread Terry Bowman
turbostat: Enable accumulate RAPL display") Signed-off-by: Terry Bowman Cc: Len Brown Cc: linux...@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- tools/power/x86/turbostat/turbostat.c | 61 --- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/

Re: [PATCH v4] tools/power turbostat: Fix RAPL summary collection on AMD processors

2021-04-16 Thread Terry Bowman
Hi Calvin, Thanks for the feedback. I'll begin making the change and testing. I'll respond with V2 patch in this thread. Regards, Terry On 4/14/21 9:13 PM, Calvin Walton wrote: On Tue, 2021-03-30 at 21:38 +0000, Terry Bowman wrote: +int idx_valid_amd(int idx) +{ +   s

[PATCH v2] tools/power turbostat: Fix RAPL summary collection on AMD processors

2021-04-19 Thread Terry Bowman
turbostat: Enable accumulate RAPL display") Signed-off-by: Terry Bowman --- Changes in V2: - Set patch title to v2. The first patch submission was mistakenly titled as v4 when it should have been v1. - Change offset variables from 'int' to 'off_t' type. Change is needed

[PATCH] ACPI / APEI: Add is_ghes_type() to identify GHES sources

2021-01-22 Thread Terry Bowman
From: Yazen Ghannam Refactor duplicated GHES identity logic into is_ghes_type(). Signed-off-by: Yazen Ghannam Reviewed-by: Robert Richter Signed-off-by: Terry Bowman --- drivers/acpi/apei/hest.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/acpi

[PATCH v2] ACPI / APEI: Add is_generic_error() to identify GHES sources

2021-01-26 Thread Terry Bowman
From: Yazen Ghannam Refactor duplicated GHES identity logic into is_generic_error(). Signed-off-by: Yazen Ghannam Reviewed-by: Robert Richter Co-developed-by: Terry Bowman Signed-off-by: Terry Bowman --- Changes in v2: - Rename is_ghes_type() to is_generic_error() - Add co-developed-by

Re: [PATCH] ACPI / APEI: Add is_ghes_type() to identify GHES sources

2021-01-25 Thread Terry Bowman
On 1/25/21 11:14 AM, Borislav Petkov wrote: On Mon, Jan 25, 2021 at 05:41:04PM +0100, Rafael J. Wysocki wrote: On Fri, Jan 22, 2021 at 7:05 PM Terry Bowman wrote: From: Yazen Ghannam Refactor duplicated GHES identity logic into is_ghes_type(). Signed-off-by: Yazen Ghannam Reviewed-by

[PATCH v3 4/4] cxl/dax: Delay consumption of SOFT RESERVE resources

2025-04-05 Thread Terry Bowman
then registers any remaining SOFT RESERVE resources with the dax hmem driver. Signed-off-by: Nathan Fontenot Signed-off-by: Terry Bowman --- drivers/cxl/core/region.c | 10 + drivers/dax/hmem/device.c | 43 --- drivers/dax/hmem/hmem.c | 3 ++- in

[PATCH v3 0/4] Add managed SOFT RESERVE resource handling

2025-04-04 Thread Terry Bowman
Add the ability to manage SOFT RESERVE iomem resources prior to them being added to the iomem resource tree. This allows drivers, such as CXL, to remove any pieces of the SOFT RESERVE resource that intersect with created CXL regions. The current approach of leaving the SOFT RESERVE resources as is

[PATCH v3 2/4] cxl: Update Soft Reserved resources upon region creation

2025-04-03 Thread Terry Bowman
: Terry Bowman --- drivers/cxl/Kconfig| 4 drivers/cxl/acpi.c | 28 ++ drivers/cxl/core/Makefile | 2 +- drivers/cxl/core/region.c | 24 +- drivers/cxl/core/suspend.c | 41 ++ drivers/cxl/cxl.h

[PATCH v3 3/4] dax/mum: Save the dax mum platform device pointer

2025-04-03 Thread Terry Bowman
clean up the walk_hmem_resources() routine to no require the struct device argument. There should be no functional changes. Signed-off-by: Nathan Fontenot Signed-off-by: Terry Bowman --- drivers/dax/hmem/device.c | 4 ++-- drivers/dax/hmem/hmem.c | 9 ++--- include/linux/dax.h | 5

[PATCH v3 1/4] kernel/resource: Provide mem region release for SOFT RESERVES

2025-04-03 Thread Terry Bowman
tenot Signed-off-by: Terry Bowman --- include/linux/ioport.h | 3 +++ kernel/resource.c | 55 +++--- 2 files changed, 54 insertions(+), 4 deletions(-) diff --git a/include/linux/ioport.h b/include/linux/ioport.h index 5385349f0b8a..718360c9c724 100644