From: Simon Glass <simon.glass@canonical.com> Fix format warning: atomic64_t.counter is 'long' on 32-bit systems, so cast to 'long long' for %lld format. Co-developed-by: Claude <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com> --- fs/ext4l/mballoc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ext4l/mballoc.c b/fs/ext4l/mballoc.c index b58d72dfd26..6b0926a597b 100644 --- a/fs/ext4l/mballoc.c +++ b/fs/ext4l/mballoc.c @@ -3907,9 +3907,9 @@ void ext4_mb_release(struct super_block *sb) atomic_read(&sbi->s_bal_breaks), atomic_read(&sbi->s_mb_lost_chunks)); ext4_msg(sb, KERN_INFO, - "mballoc: %u generated and it took %llu", + "mballoc: %u generated and it took %lld", atomic_read(&sbi->s_mb_buddies_generated), - atomic64_read(&sbi->s_mb_generation_time)); + (long long)atomic64_read(&sbi->s_mb_generation_time)); ext4_msg(sb, KERN_INFO, "mballoc: %u preallocated, %u discarded", atomic_read(&sbi->s_mb_preallocated), -- 2.43.0