Blame SOURCES/0125-libndctl-papr-Add-support-for-reporting-shutdown-cou.patch

26ccd9
From aa990008f48f21121474a411d829f24e832c89a2 Mon Sep 17 00:00:00 2001
26ccd9
From: Vaibhav Jain <vaibhav@linux.ibm.com>
26ccd9
Date: Tue, 25 Jan 2022 00:26:05 +0530
26ccd9
Subject: [PATCH 125/217] libndctl/papr: Add support for reporting
26ccd9
 shutdown-count
0670da
26ccd9
Add support for reporting dirty-shutdown-count (DSC) for PAPR based
26ccd9
NVDIMMs. The sysfs attribute exposing this value is located at
26ccd9
nmemX/papr/dirty_shutdown.
0670da
26ccd9
This counter is also returned in payload for PAPR_PDSM_HEALTH as newly
26ccd9
introduced member 'dimm_dsc' in 'struct nd_papr_pdsm_health'. Presence
26ccd9
of 'DSC' is indicated by the PDSM_DIMM_DSC_VALID extension flag.
0670da
26ccd9
The patch implements 'ndctl_dimm_ops.smart_get_shutdown_count'
26ccd9
callback in implemented as papr_smart_get_shutdown_count().
26ccd9
26ccd9
Kernel side changes to support reporting DSC have been merged to linux kernel
26ccd9
via patch proposed at [1]. With updated kernel 'ndctl list -DH' reports
26ccd9
following output on PPC64:
26ccd9
26ccd9
$ sudo ndctl list -DH
26ccd9
[
26ccd9
  {
26ccd9
    "dev":"nmem0",
26ccd9
    "health":{
26ccd9
      "health_state":"ok",
26ccd9
      "life_used_percentage":50,
26ccd9
      "shutdown_state":"clean",
26ccd9
      "shutdown_count":10
26ccd9
    }
26ccd9
  }
26ccd9
]
26ccd9
26ccd9
[1] http://patchwork.ozlabs.org/project/linuxppc-dev/patch/20210624080621.252038-1-vaibhav@linux.ibm.com
26ccd9
26ccd9
Link: https://lore.kernel.org/r/20220124185605.1465681-1-vaibhav@linux.ibm.com
26ccd9
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
26ccd9
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
26ccd9
---
26ccd9
 ndctl/lib/libndctl.c  |  6 +++++-
26ccd9
 ndctl/lib/papr.c      | 23 +++++++++++++++++++++++
26ccd9
 ndctl/lib/papr_pdsm.h |  6 ++++++
26ccd9
 3 files changed, 34 insertions(+), 1 deletion(-)
0670da
0670da
diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
0670da
index 47a234c..5979a92 100644
0670da
--- a/ndctl/lib/libndctl.c
0670da
+++ b/ndctl/lib/libndctl.c
0670da
@@ -1819,8 +1819,12 @@ static int add_papr_dimm(struct ndctl_dimm *dimm, const char *dimm_base)
0670da
 
0670da
 		/* Allocate monitor mode fd */
0670da
 		dimm->health_eventfd = open(path, O_RDONLY|O_CLOEXEC);
0670da
-		rc = 0;
0670da
+		/* Get the dirty shutdown counter value */
0670da
+		sprintf(path, "%s/papr/dirty_shutdown", dimm_base);
0670da
+		if (sysfs_read_attr(ctx, path, buf) == 0)
0670da
+			dimm->dirty_shutdown = strtoll(buf, NULL, 0);
0670da
 
0670da
+		rc = 0;
0670da
 	} else if (strcmp(buf, "nvdimm_test") == 0) {
0670da
 		/* probe via common populate_dimm_attributes() */
0670da
 		rc = populate_dimm_attributes(dimm, dimm_base, "papr");
0670da
diff --git a/ndctl/lib/papr.c b/ndctl/lib/papr.c
0670da
index 43b8412..46cf9c1 100644
0670da
--- a/ndctl/lib/papr.c
0670da
+++ b/ndctl/lib/papr.c
0670da
@@ -165,6 +165,9 @@ static unsigned int papr_smart_get_flags(struct ndctl_cmd *cmd)
0670da
 		if (health.extension_flags & PDSM_DIMM_HEALTH_RUN_GAUGE_VALID)
0670da
 			flags |= ND_SMART_USED_VALID;
0670da
 
0670da
+		if (health.extension_flags &  PDSM_DIMM_DSC_VALID)
0670da
+			flags |= ND_SMART_SHUTDOWN_COUNT_VALID;
0670da
+
0670da
 		return flags;
0670da
 	}
0670da
 
0670da
@@ -236,6 +239,25 @@ static unsigned int papr_smart_get_life_used(struct ndctl_cmd *cmd)
0670da
 		(100 - health.dimm_fuel_gauge) : 0;
0670da
 }
0670da
 
0670da
+static unsigned int papr_smart_get_shutdown_count(struct ndctl_cmd *cmd)
0670da
+{
0670da
+
0670da
+	struct nd_papr_pdsm_health health;
0670da
+
0670da
+	/* Ignore in case of error or invalid pdsm */
0670da
+	if (!cmd_is_valid(cmd) ||
0670da
+	    to_pdsm(cmd)->cmd_status != 0 ||
0670da
+	    to_pdsm_cmd(cmd) != PAPR_PDSM_HEALTH)
0670da
+		return 0;
0670da
+
0670da
+	/* get the payload from command */
0670da
+	health = to_payload(cmd)->health;
0670da
+
0670da
+	return (health.extension_flags & PDSM_DIMM_DSC_VALID) ?
0670da
+		(health.dimm_dsc) : 0;
0670da
+
0670da
+}
0670da
+
0670da
 struct ndctl_dimm_ops * const papr_dimm_ops = &(struct ndctl_dimm_ops) {
0670da
 	.cmd_is_supported = papr_cmd_is_supported,
0670da
 	.smart_get_flags = papr_smart_get_flags,
0670da
@@ -245,4 +267,5 @@ struct ndctl_dimm_ops * const papr_dimm_ops = &(struct ndctl_dimm_ops) {
0670da
 	.smart_get_health = papr_smart_get_health,
0670da
 	.smart_get_shutdown_state = papr_smart_get_shutdown_state,
0670da
 	.smart_get_life_used = papr_smart_get_life_used,
0670da
+	.smart_get_shutdown_count = papr_smart_get_shutdown_count,
0670da
 };
0670da
diff --git a/ndctl/lib/papr_pdsm.h b/ndctl/lib/papr_pdsm.h
0670da
index 1bac8a7..f45b1e4 100644
0670da
--- a/ndctl/lib/papr_pdsm.h
0670da
+++ b/ndctl/lib/papr_pdsm.h
0670da
@@ -75,6 +75,9 @@
0670da
 /* Indicate that the 'dimm_fuel_gauge' field is valid */
0670da
 #define PDSM_DIMM_HEALTH_RUN_GAUGE_VALID 1
0670da
 
0670da
+/* Indicate that the 'dimm_dsc' field is valid */
0670da
+#define PDSM_DIMM_DSC_VALID 2
0670da
+
0670da
 /*
0670da
  * Struct exchanged between kernel & ndctl in for PAPR_PDSM_HEALTH
0670da
  * Various flags indicate the health status of the dimm.
0670da
@@ -103,6 +106,9 @@ struct nd_papr_pdsm_health {
0670da
 
0670da
 			/* Extension flag PDSM_DIMM_HEALTH_RUN_GAUGE_VALID */
0670da
 			__u16 dimm_fuel_gauge;
0670da
+
0670da
+			/* Extension flag PDSM_DIMM_DSC_VALID */
0670da
+			__u64 dimm_dsc;
0670da
 		};
0670da
 		__u8 buf[ND_PDSM_PAYLOAD_MAX_SIZE];
0670da
 	};
26ccd9
-- 
26ccd9
2.27.0
26ccd9