anitazha / rpms / ndctl

Forked from rpms/ndctl a year ago
Clone

Blame SOURCES/aa99000-libndctl-papr-Add-support-for-reporting-shutdown-count.patch

0670da
libndctl/papr: Add support for reporting shutdown-count
0670da
0670da
BZ: 
0670da
Brew: 
0670da
0670da
commit aa990008f48f21121474a411d829f24e832c89a2
0670da
Author: Vaibhav Jain <vaibhav@linux.ibm.com>
0670da
Date:   Tue Jan 25 00:26:05 2022 +0530
0670da
0670da
    libndctl/papr: Add support for reporting shutdown-count
0670da
    
0670da
    Add support for reporting dirty-shutdown-count (DSC) for PAPR based
0670da
    NVDIMMs. The sysfs attribute exposing this value is located at
0670da
    nmemX/papr/dirty_shutdown.
0670da
    
0670da
    This counter is also returned in payload for PAPR_PDSM_HEALTH as newly
0670da
    introduced member 'dimm_dsc' in 'struct nd_papr_pdsm_health'. Presence
0670da
    of 'DSC' is indicated by the PDSM_DIMM_DSC_VALID extension flag.
0670da
    
0670da
    The patch implements 'ndctl_dimm_ops.smart_get_shutdown_count'
0670da
    callback in implemented as papr_smart_get_shutdown_count().
0670da
    
0670da
    Kernel side changes to support reporting DSC have been merged to linux kernel
0670da
    via patch proposed at [1]. With updated kernel 'ndctl list -DH' reports
0670da
    following output on PPC64:
0670da
    
0670da
    $ sudo ndctl list -DH
0670da
    [
0670da
      {
0670da
        "dev":"nmem0",
0670da
        "health":{
0670da
          "health_state":"ok",
0670da
          "life_used_percentage":50,
0670da
          "shutdown_state":"clean",
0670da
          "shutdown_count":10
0670da
        }
0670da
      }
0670da
    ]
0670da
    
0670da
    [1] http://patchwork.ozlabs.org/project/linuxppc-dev/patch/20210624080621.252038-1-vaibhav@linux.ibm.com
0670da
    
0670da
    Link: https://lore.kernel.org/r/20220124185605.1465681-1-vaibhav@linux.ibm.com
0670da
    Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
0670da
    Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
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
 	};