From: Tarun Sahu <tsahu@linux.ibm.com>
To: nvdimm@lists.linux.dev
Cc: tsahu@linux.ibm.com, dan.j.williams@intel.com,
vishal.l.verma@intel.com, aneesh.kumar@linux.ibm.com,
sbhat@linux.ibm.com, vaibhav@linux.ibm.com
Subject: [PATCH 2/2] ndctl/namespace:Implement write-infoblock for sector mode namespaces
Date: Wed, 13 Apr 2022 09:22:52 +0530 [thread overview]
Message-ID: <20220413035252.161527-3-tsahu@linux.ibm.com> (raw)
In-Reply-To: <20220413035252.161527-1-tsahu@linux.ibm.com>
Following to the previous patch in this series,
once the namespace info has been collected in ns_info,
while writing to the infoblock for sector mode, it can be
written with original infoblock values except the ones that
have been provided by parameter arguments to write-infoblock command.
Currently, this patch allows only uuid and parent_uuid to be
changed, In future support for other values can be implemented
easily by adding condition inside write_btt_sb() function, which
has been created to write BTT sector mode specific namespace.
$ ./ndctl read-infoblock namespace0.0 -j
[
{
"dev":"namespace0.0",
"signature":"BTT_ARENA_INFO",
"uuid":"7296ebd6-7039-4d02-9ed9-ac5f351ff0e4",
"parent_uuid":"46850d31-8fb5-4492-b630-9f3cd7b77500",
"flags":0,
"version":"2.0",
"external_lbasize":4096,
"external_nlba":8380160,
"internal_lbasize":4096,
"internal_nlba":8380416,
"nfree":256,
"infosize":4096,
"nextoff":0,
"dataoff":4096,
"mapoff":34326196224,
"logoff":34359717888,
"info2off":34359734272
}
]
read 1 infoblock
$ ./ndctl write-infoblock namespace0.0 \
> --uuid "d0b19883-0874-4847-8c71-71549590949c"
wrote 1 infoblock
$ ./ndctl read-infoblock namespace0.0 -j
[
{
"dev":"namespace0.0",
"signature":"BTT_ARENA_INFO",
"uuid":"d0b19883-0874-4847-8c71-71549590949c",
"parent_uuid":"46850d31-8fb5-4492-b630-9f3cd7b77500",
"flags":0,
"version":"2.0",
"external_lbasize":4096,
"external_nlba":8380160,
"internal_lbasize":4096,
"internal_nlba":8380416,
"nfree":256,
"infosize":4096,
"nextoff":0,
"dataoff":4096,
"mapoff":34326196224,
"logoff":34359717888,
"info2off":34359734272
}
]
read 1 infoblock
Signed-off-by: Tarun Sahu <tsahu@linux.ibm.com>
---
ndctl/namespace.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/ndctl/namespace.c b/ndctl/namespace.c
index 4555a63..82f370b 100644
--- a/ndctl/namespace.c
+++ b/ndctl/namespace.c
@@ -247,6 +247,7 @@ static int set_defaults(enum device_action action)
break;
case NDCTL_NS_MODE_FSDAX:
case NDCTL_NS_MODE_DEVDAX:
+ case NDCTL_NS_MODE_SECTOR:
break;
default:
if (action == ACTION_WRITE_INFOBLOCK) {
@@ -2008,6 +2009,50 @@ static int write_pfn_sb(int fd, unsigned long long size, const char *sig,
return 0;
}
+static int write_btt_sb(const int fd, unsigned long long size, struct ns_info *ns_info)
+{
+ int rc = 0;
+ uuid_t uuid, parent_uuid;
+
+ // updating the original values which are asked to change,
+ // rest will be unchanged
+ if (param.uuid) {
+ rc = uuid_parse(param.uuid, uuid);
+ if (rc) {
+ pr_verbose("Failed to parse UUID");
+ return rc;
+ }
+ memcpy(((struct btt_sb *)(ns_info->ns_sb_buf + ns_info->offset))->uuid,
+ uuid, sizeof(uuid_t));
+ }
+ if (param.parent_uuid) {
+ rc = uuid_parse(param.parent_uuid, parent_uuid);
+ if (rc) {
+ pr_verbose("Failed to parse UUID");
+ return rc;
+ }
+ memcpy(((struct btt_sb *)(ns_info->ns_sb_buf + ns_info->offset))->parent_uuid,
+ parent_uuid, sizeof(uuid_t));
+ }
+
+ if (pwrite(fd, ns_info->ns_sb_buf + ns_info->offset, sizeof(struct btt_sb),
+ ns_info->offset) < 0) {
+ pr_verbose("Unable to write the info block: %s\n",
+ strerror(errno));
+ rc = -errno;
+ }
+
+ if (pwrite(fd, ns_info->ns_sb_buf + ns_info->offset, sizeof(struct btt_sb),
+ size - sizeof(struct btt_sb)) < 0) {
+ pr_verbose("Unable to write the info block: %s\n",
+ strerror(errno));
+ rc = -errno;
+ }
+ return rc;
+}
+
+
+
static int file_write_infoblock(const char *path, struct ns_info *ns_info)
{
unsigned long long size = parse_size64(param.size);
@@ -2055,6 +2100,10 @@ static int file_write_infoblock(const char *path, struct ns_info *ns_info)
case NDCTL_NS_MODE_DEVDAX:
rc = write_pfn_sb(fd, size, DAX_SIG, ns_info);
break;
+ case NDCTL_NS_MODE_SECTOR:
+ if (ns_info->mode == NDCTL_NS_MODE_SECTOR)
+ rc = write_btt_sb(fd, size, ns_info);
+ break;
case NDCTL_NS_MODE_UNKNOWN:
switch (ns_info->mode) {
case NDCTL_NS_MODE_FSDAX:
@@ -2063,6 +2112,9 @@ static int file_write_infoblock(const char *path, struct ns_info *ns_info)
case NDCTL_NS_MODE_DEVDAX:
rc = write_pfn_sb(fd, size, DAX_SIG, ns_info);
break;
+ case NDCTL_NS_MODE_SECTOR:
+ rc = write_btt_sb(fd, size, ns_info);
+ break;
default:
rc = -EINVAL;
break;
--
2.18.1
next prev parent reply other threads:[~2022-04-13 3:53 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-13 3:52 [PATCH 0/2] ndctl/namespace:Fix and improve write-infoblock Tarun Sahu
2022-04-13 3:52 ` [PATCH 1/2] ndctl/namespace:Fix multiple issues with write-infoblock Tarun Sahu
2022-04-25 12:37 ` Shivaprasad G Bhat
2022-04-13 3:52 ` Tarun Sahu [this message]
2022-04-25 12:37 ` [PATCH 2/2] ndctl/namespace:Implement write-infoblock for sector mode namespaces Shivaprasad G Bhat
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=20220413035252.161527-3-tsahu@linux.ibm.com \
--to=tsahu@linux.ibm.com \
--cc=aneesh.kumar@linux.ibm.com \
--cc=dan.j.williams@intel.com \
--cc=nvdimm@lists.linux.dev \
--cc=sbhat@linux.ibm.com \
--cc=vaibhav@linux.ibm.com \
--cc=vishal.l.verma@intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox