[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

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 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/

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 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/

[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] 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