From: Lucas Karpinski <lkarpinski@nvidia.com>
To: linux-erofs@lists.ozlabs.org
Cc: jcalmels@nvidia.com, Lucas Karpinski <lkarpinski@nvidia.com>
Subject: [PATCH v2 2/5] erofs-utils: lib: add helper function erofs_uuid_unparse_as_tag
Date: Mon, 9 Mar 2026 12:38:18 -0400 [thread overview]
Message-ID: <20260309-merge-fs-v2-2-2dd0ef53db4d@nvidia.com> (raw)
In-Reply-To: <20260309-merge-fs-v2-0-2dd0ef53db4d@nvidia.com>
Add helper function for converting uuid to tag. This will also be used in
rebuild FULLDATA mode.
Signed-off-by: Lucas Karpinski <lkarpinski@nvidia.com>
---
lib/liberofs_uuid.h | 1 +
lib/uuid_unparse.c | 16 +++++++++++++++-
mkfs/main.c | 11 +----------
3 files changed, 17 insertions(+), 11 deletions(-)
diff --git a/lib/liberofs_uuid.h b/lib/liberofs_uuid.h
index 63b358a..c35762a 100644
--- a/lib/liberofs_uuid.h
+++ b/lib/liberofs_uuid.h
@@ -4,6 +4,7 @@
void erofs_uuid_generate(unsigned char *out);
void erofs_uuid_unparse_lower(const unsigned char *buf, char *out);
+void erofs_uuid_unparse_as_tag(const unsigned char *buf, char *out);
int erofs_uuid_parse(const char *in, unsigned char *uu);
#endif
diff --git a/lib/uuid_unparse.c b/lib/uuid_unparse.c
index 3255c4b..18e87d1 100644
--- a/lib/uuid_unparse.c
+++ b/lib/uuid_unparse.c
@@ -8,7 +8,8 @@
#include "erofs/config.h"
#include "liberofs_uuid.h"
-void erofs_uuid_unparse_lower(const unsigned char *buf, char *out) {
+void erofs_uuid_unparse_lower(const unsigned char *buf, char *out)
+{
sprintf(out, "%04x%04x-%04x-%04x-%04x-%04x%04x%04x",
(buf[0] << 8) | buf[1],
(buf[2] << 8) | buf[3],
@@ -19,3 +20,16 @@ void erofs_uuid_unparse_lower(const unsigned char *buf, char *out) {
(buf[12] << 8) | buf[13],
(buf[14] << 8) | buf[15]);
}
+
+void erofs_uuid_unparse_as_tag(const unsigned char *buf, char *out)
+{
+ sprintf(out, "%04x%04x%04x%04x%04x%04x%04x%04x",
+ (buf[0] << 8) | buf[1],
+ (buf[2] << 8) | buf[3],
+ (buf[4] << 8) | buf[5],
+ (buf[6] << 8) | buf[7],
+ (buf[8] << 8) | buf[9],
+ (buf[10] << 8) | buf[11],
+ (buf[12] << 8) | buf[13],
+ (buf[14] << 8) | buf[15]);
+}
diff --git a/mkfs/main.c b/mkfs/main.c
index c2c0a1d..48da20f 100644
--- a/mkfs/main.c
+++ b/mkfs/main.c
@@ -1782,16 +1782,7 @@ static int erofs_mkfs_rebuild_load_trees(struct erofs_inode *root)
memcpy(devs[idx].tag, tag, sizeof(devs[0].tag));
else
/* convert UUID of the source image to a hex string */
- sprintf((char *)g_sbi.devs[idx].tag,
- "%04x%04x%04x%04x%04x%04x%04x%04x",
- (src->uuid[0] << 8) | src->uuid[1],
- (src->uuid[2] << 8) | src->uuid[3],
- (src->uuid[4] << 8) | src->uuid[5],
- (src->uuid[6] << 8) | src->uuid[7],
- (src->uuid[8] << 8) | src->uuid[9],
- (src->uuid[10] << 8) | src->uuid[11],
- (src->uuid[12] << 8) | src->uuid[13],
- (src->uuid[14] << 8) | src->uuid[15]);
+ erofs_uuid_unparse_as_tag(src->uuid, (char *)g_sbi.devs[idx].tag);
}
return 0;
}
--
Git-155)
next prev parent reply other threads:[~2026-03-09 16:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-09 16:38 [PATCH v2 0/5] erofs-utils: implement the FULLDATA rebuild mode Lucas Karpinski
2026-03-09 16:38 ` [PATCH v2 1/5] erofs-utils: lib: pass uniaddr_offset to erofs_rebuild_load_tree Lucas Karpinski
2026-03-09 16:38 ` Lucas Karpinski [this message]
2026-03-09 16:38 ` [PATCH v2 3/5] erofs-utils: lib: preserve primarydevice_blocks if already larger Lucas Karpinski
2026-03-09 16:38 ` [PATCH v2 4/5] erofs-utils: mfks: add rebuild FULLDATA for combined EROFS images Lucas Karpinski
2026-03-10 10:24 ` Gao Xiang
2026-03-09 16:38 ` [PATCH v2 5/5] erofs-utils: manpages: update to reflect fulldata support Lucas Karpinski
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=20260309-merge-fs-v2-2-2dd0ef53db4d@nvidia.com \
--to=lkarpinski@nvidia.com \
--cc=jcalmels@nvidia.com \
--cc=linux-erofs@lists.ozlabs.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox