* [LTP] [PATCH] inode01: Use uint64_t to prevent inode truncation on 32-bit
@ 2026-08-07 10:56 Wake Liu via ltp
2026-08-07 11:04 ` [LTP] " linuxtestproject.agent
2026-08-07 23:17 ` [LTP] [PATCH v2] " Wake Liu via ltp
0 siblings, 2 replies; 4+ messages in thread
From: Wake Liu via ltp @ 2026-08-07 10:56 UTC (permalink / raw)
To: ltp; +Cc: Wake Liu
On 32-bit architectures, ino_t is typically 32-bit, whereas the kernel
and struct stat may support 64-bit inode numbers (e.g. st_ino is
unsigned long long).
The conversion of inode01 to the new API introduced tracking of inodes
in an array of struct inode_info, which used ino_t. This causes 64-bit
inode numbers to be truncated to 32-bit when running as a 32-bit binary
on a filesystem that uses 64-bit inodes.
This truncation can lead to false duplicate inode reports and test
failures.
Fix this by using uint64_t for tracking inode numbers throughout the
test.
Signed-off-by: Wake Liu <wakel@google.com>
---
testcases/kernel/fs/inode/inode01.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/testcases/kernel/fs/inode/inode01.c b/testcases/kernel/fs/inode/inode01.c
index 2816ad61a..d41ff2c62 100644
--- a/testcases/kernel/fs/inode/inode01.c
+++ b/testcases/kernel/fs/inode/inode01.c
@@ -36,7 +36,7 @@ static struct tcase {
};
struct inode_info {
- ino_t ino;
+ uint64_t ino;
char path[PATH_MAX];
};
@@ -74,7 +74,7 @@ static void record_inode(struct inode_info *inodes, unsigned int idx,
snprintf(inodes[idx].path, sizeof(inodes[idx].path), "%s", path);
}
-static ino_t verify_file(const struct tcase *tc, const char *path)
+static uint64_t verify_file(const struct tcase *tc, const char *path)
{
char buf[PATH_MAX];
char extra;
@@ -128,7 +128,7 @@ static void verify_tree(const struct tcase *tc, const char *parent,
for (i = 0; i < tc->fanout; i++, create_file = !create_file) {
char path[PATH_MAX];
unsigned int my_id;
- ino_t ino;
+ uint64_t ino;
snprintf(path, sizeof(path), "%s/%08u", parent, ++*id);
--
2.55.0.654.g21b8a5bc05-goog
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [LTP] inode01: Use uint64_t to prevent inode truncation on 32-bit
2026-08-07 10:56 [LTP] [PATCH] inode01: Use uint64_t to prevent inode truncation on 32-bit Wake Liu via ltp
@ 2026-08-07 11:04 ` linuxtestproject.agent
2026-08-07 23:17 ` [LTP] [PATCH v2] " Wake Liu via ltp
1 sibling, 0 replies; 4+ messages in thread
From: linuxtestproject.agent @ 2026-08-07 11:04 UTC (permalink / raw)
To: Wake Liu; +Cc: ltp
Hi Wake,
On Fri, 07 Aug 2026, Wake Liu wrote:
> inode01: Use uint64_t to prevent inode truncation on 32-bit
> struct inode_info {
> - ino_t ino;
> + uint64_t ino;
> char path[PATH_MAX];
> };
>
> static void record_inode(struct inode_info *inodes, unsigned int idx,
> const char *path, ino_t ino)
Could the record_inode() parameter also be changed to uint64_t? Every inode
collected by verify_tree() passes through this parameter, so on the 32-bit
ABI described in the commit message the value is still truncated before it
is assigned to the new uint64_t field.
Verdict - Needs revision
---
Note:
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 4+ messages in thread* [LTP] [PATCH v2] inode01: Use uint64_t to prevent inode truncation on 32-bit
2026-08-07 10:56 [LTP] [PATCH] inode01: Use uint64_t to prevent inode truncation on 32-bit Wake Liu via ltp
2026-08-07 11:04 ` [LTP] " linuxtestproject.agent
@ 2026-08-07 23:17 ` Wake Liu via ltp
2026-08-07 23:36 ` [LTP] " linuxtestproject.agent
1 sibling, 1 reply; 4+ messages in thread
From: Wake Liu via ltp @ 2026-08-07 23:17 UTC (permalink / raw)
To: ltp; +Cc: Wake Liu
On 32-bit architectures, ino_t is typically 32-bit, whereas the kernel
and struct stat may support 64-bit inode numbers (e.g. st_ino is
unsigned long long).
The conversion of inode01 to the new API introduced tracking of inodes
in an array of struct inode_info, which used ino_t. This causes 64-bit
inode numbers to be truncated to 32-bit when running as a 32-bit binary
on a filesystem that uses 64-bit inodes.
This truncation can lead to false duplicate inode reports and test
failures.
Fix this by using uint64_t for tracking inode numbers throughout the
test.
Signed-off-by: Wake Liu <wakel@google.com>
---
v1 -> v2:
- Also change record_inode() parameter type to uint64_t to prevent truncation before assignment.
testcases/kernel/fs/inode/inode01.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/testcases/kernel/fs/inode/inode01.c b/testcases/kernel/fs/inode/inode01.c
index 2816ad61a..50b5311a4 100644
--- a/testcases/kernel/fs/inode/inode01.c
+++ b/testcases/kernel/fs/inode/inode01.c
@@ -36,7 +36,7 @@ static struct tcase {
};
struct inode_info {
- ino_t ino;
+ uint64_t ino;
char path[PATH_MAX];
};
@@ -68,13 +68,13 @@ static void create_tree(const struct tcase *tc, const char *parent,
}
static void record_inode(struct inode_info *inodes, unsigned int idx,
- const char *path, ino_t ino)
+ const char *path, uint64_t ino)
{
inodes[idx].ino = ino;
snprintf(inodes[idx].path, sizeof(inodes[idx].path), "%s", path);
}
-static ino_t verify_file(const struct tcase *tc, const char *path)
+static uint64_t verify_file(const struct tcase *tc, const char *path)
{
char buf[PATH_MAX];
char extra;
@@ -128,7 +128,7 @@ static void verify_tree(const struct tcase *tc, const char *parent,
for (i = 0; i < tc->fanout; i++, create_file = !create_file) {
char path[PATH_MAX];
unsigned int my_id;
- ino_t ino;
+ uint64_t ino;
snprintf(path, sizeof(path), "%s/%08u", parent, ++*id);
--
2.55.0.654.g21b8a5bc05-goog
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-07 23:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-07 10:56 [LTP] [PATCH] inode01: Use uint64_t to prevent inode truncation on 32-bit Wake Liu via ltp
2026-08-07 11:04 ` [LTP] " linuxtestproject.agent
2026-08-07 23:17 ` [LTP] [PATCH v2] " Wake Liu via ltp
2026-08-07 23:36 ` [LTP] " linuxtestproject.agent
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.