All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zhu Lingshan <lszhu@suse.com>
To: target-devel@vger.kernel.org
Subject: [PATCH 11/33] TCMU PR: add funcs to handle TCMU PR registrations
Date: Fri, 15 Jun 2018 18:23:20 +0000	[thread overview]
Message-ID: <20180615182342.6239-11-lszhu@suse.com> (raw)

This patch added a struct tcmu_pr_reg which contain Persistent
Reservation registrations information, also added two functions
tcmu_pr_info_reg_decode() and tcmu_pr_info_reg_encode() to handle
it.

Signed-off-by: Zhu Lingshan <lszhu@suse.com>
---
 drivers/target/target_core_user.c | 51 +++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/drivers/target/target_core_user.c b/drivers/target/target_core_user.c
index 8e61641f34ac..55f1ba98a688 100644
--- a/drivers/target/target_core_user.c
+++ b/drivers/target/target_core_user.c
@@ -228,6 +228,13 @@ struct tcmu_scsi2_rsv {
 	char it_nexus[TCMU_PR_IT_NEXUS_MAXLEN];
 	};
 
+struct tcmu_pr_reg {
+	struct list_head regs_node;
+	u64 key;	/* registered key */
+	/* I-T nexus for registration */
+	char it_nexus[TCMU_PR_IT_NEXUS_MAXLEN];
+};
+
 /*
  * To avoid dead lock the mutex lock order should always be:
  *
@@ -2080,6 +2087,50 @@ static int tcmu_pr_info_num_regs_encode(char *buf, size_t buf_remain,
 	return rc;
 }
 
+static int tcmu_pr_info_reg_decode(char *str, struct tcmu_pr_reg **_reg)
+{
+	struct tcmu_pr_reg *reg;
+	int rc;
+
+	if (!_reg) {
+		WARN_ON(1);
+		return -EINVAL;
+	}
+
+	reg = kzalloc(sizeof(*reg), GFP_KERNEL);
+	if (!reg)
+		return -ENOMEM;
+
+	/* registration key and I-T nexus with space separator */
+	rc = sscanf(str, "0x%016llx %" __stringify(TCMU_PR_IT_NEXUS_MAXLEN)
+			 "s", &reg->key, reg->it_nexus);
+	if (rc != 2) {
+		pr_err("failed to parse PR reg: %s\n", str);
+		kfree(reg);
+		return -EINVAL;
+	}
+
+	pr_debug("processed pr_info reg: %s\n", str);
+	*_reg = reg;
+
+	return 0;
+}
+
+static int tcmu_pr_info_reg_encode(char *buf, size_t buf_remain,
+				   struct tcmu_pr_reg *reg)
+{
+	int rc;
+
+	rc = snprintf(buf, buf_remain, "0x%016llx %s\n", reg->key,
+		      reg->it_nexus);
+	if ((rc < 0) || (rc >= buf_remain)) {
+		pr_err("failed to encode PR registration\n");
+		return -EINVAL;
+	}
+
+	return rc;
+}
+
 static int tcmu_configure_device(struct se_device *dev)
 {
 	struct tcmu_dev *udev = TCMU_DEV(dev);
-- 
2.17.1


                 reply	other threads:[~2018-06-15 18:23 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180615182342.6239-11-lszhu@suse.com \
    --to=lszhu@suse.com \
    --cc=target-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.