@@ -56,46 +56,6 @@ static struct ndctl_cmd *alloc_intel_cmd(struct ndctl_dimm *dimm,
return cmd;
}
-/*
- * If provided, read the cached shutdown count in case the user does not have
- * access rights to run the smart command, and pretend the command was
- * successful with only the shutdown_count valid.
- */
-static int intel_smart_handle_error(struct ndctl_cmd *cmd)
-{
- struct ndctl_dimm *dimm = cmd->dimm;
- struct ndctl_bus *bus = cmd_to_bus(cmd);
- struct ndctl_ctx *ctx = ndctl_bus_get_ctx(bus);
- char *path = NULL, shutdown_count[16] = {};
- int fd, rc = cmd->status;
-
- if (!dimm)
- goto out;
-
- if (asprintf(&path, DEF_TMPFS_DIR "/%s/usc",
- ndctl_dimm_get_devname(dimm)) < 0)
- goto out;
-
- fd = open(path, O_RDONLY);
- if (fd < 0)
- goto free_path;
-
- if (read(fd, shutdown_count, sizeof(shutdown_count)) < 0)
- goto close;
-
- cmd->intel->smart.flags = ND_INTEL_SMART_SHUTDOWN_COUNT_VALID;
- cmd->intel->smart.shutdown_count = strtoull(shutdown_count, NULL, 0);
- rc = cmd->status = 0;
- close:
- close (fd);
- free_path:
- free(path);
- out:
- if (rc)
- err(ctx, "failed: %s\n", strerror(errno));
- return rc;
-}
-
static struct ndctl_cmd *intel_dimm_cmd_new_smart(struct ndctl_dimm *dimm)
{
struct ndctl_cmd *cmd;
@@ -107,7 +67,6 @@ static struct ndctl_cmd *intel_dimm_cmd_new_smart(struct ndctl_dimm *dimm)
if (!cmd)
return NULL;
cmd->firmware_status = &cmd->intel->smart.status;
- cmd->handle_error = intel_smart_handle_error;
return cmd;
}
@@ -2753,9 +2753,7 @@ NDCTL_EXPORT int ndctl_cmd_submit(struct ndctl_cmd *cmd)
fd = open(path, O_RDWR);
if (fd < 0) {
- if (!cmd->handle_error)
- err(ctx, "failed to open %s: %s\n", path,
- strerror(errno));
+ err(ctx, "failed to open %s: %s\n", path, strerror(errno));
rc = -errno;
goto out;
}
@@ -2771,8 +2769,6 @@ NDCTL_EXPORT int ndctl_cmd_submit(struct ndctl_cmd *cmd)
close(fd);
out:
cmd->status = rc;
- if (rc && cmd->handle_error)
- rc = cmd->handle_error(cmd);
return rc;
}
@@ -227,8 +227,6 @@ struct ndctl_namespace {
* @firmware_status: NFIT command output status code
* @iter: iterator for multi-xfer commands
* @source: source cmd of an inherited iter.total_buf
- * @handle_error: function pointer to handle a cmd error and override it to
- * return alternative data (from a cache for example).
*
* For dynamically sized commands like 'get_config', 'set_config', or
* 'vendor', @size encompasses the entire buffer for the command input
@@ -257,7 +255,6 @@ struct ndctl_cmd {
int dir;
} iter;
struct ndctl_cmd *source;
- int (*handle_error)(struct ndctl_cmd *cmd);
union {
struct nd_cmd_ars_cap ars_cap[0];
struct nd_cmd_ars_start ars_start[0];
Static device attribute data, if it needs to be cached and exported to unprivileged userspace, should live in sysfs. Cc: Keith Busch <keith.busch@intel.com> Cc: Vishal Verma <vishal.l.verma@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com> --- ndctl/lib/intel.c | 41 ----------------------------------------- ndctl/lib/libndctl.c | 6 +----- ndctl/lib/private.h | 3 --- 3 files changed, 1 insertion(+), 49 deletions(-)