[PATCH 4/4] nvmet: Add feature close connection from target side
Israel Rukshin
israelr at mellanox.com
Mon Nov 13 04:29:43 PST 2017
This allows the user to close any connection from target side
by writing to the file "force_close" at the controller folder.
Full path:
/config/nvmet/subsystems/<SUBSYSTEM_NAME>/controllers/<CTRL_ID>/force_close
Signed-off-by: Israel Rukshin <israelr at mellanox.com>
Reviewed-by: Max Gurtovoy <maxg at mellanox.com>
---
drivers/nvme/target/configfs.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/nvme/target/configfs.c b/drivers/nvme/target/configfs.c
index 2413df6..90e5925 100644
--- a/drivers/nvme/target/configfs.c
+++ b/drivers/nvme/target/configfs.c
@@ -496,10 +496,23 @@ static ssize_t nvmet_ctrl_trsvcid_show(struct config_item *item, char *page)
CONFIGFS_ATTR_RO(nvmet_ctrl_, trsvcid);
+static ssize_t nvmet_ctrl_force_close_store(struct config_item *item,
+ const char *page, size_t count)
+{
+ struct nvmet_ctrl *ctrl = to_nvmet_ctrl(item);
+
+ ctrl->ops->delete_ctrl(ctrl);
+
+ return count;
+}
+
+CONFIGFS_ATTR_WO(nvmet_ctrl_, force_close);
+
static struct configfs_attribute *nvmet_ctrl_attrs[] = {
&nvmet_ctrl_attr_hostnqn,
&nvmet_ctrl_attr_traddr,
&nvmet_ctrl_attr_trsvcid,
+ &nvmet_ctrl_attr_force_close,
NULL,
};
--
1.8.3.1
More information about the Linux-nvme
mailing list