Blame SOURCES/0078-exfat-fix-incorrect-loading-of-i_blocks-for-large-fi.patch

Kmods SIG 9e3ffb
From 0c336d6e33f4bedc443404c89f43c91c8bd9ee11 Mon Sep 17 00:00:00 2001
Kmods SIG 9e3ffb
From: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 9e3ffb
Date: Tue, 19 Oct 2021 15:14:21 +0900
Kmods SIG 9e3ffb
Subject: [Backport 0c336d6e33f4] exfat: fix incorrect loading of i_blocks for
Kmods SIG 9e3ffb
 large files
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
When calculating i_blocks, there was a mistake that was masked with a
Kmods SIG 9e3ffb
32-bit variable. So i_blocks for files larger than 4 GiB had incorrect
Kmods SIG 9e3ffb
values. Mask with a 64-bit variable instead of 32-bit one.
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
Fixes: 5f2aa075070c ("exfat: add inode operations")
Kmods SIG 9e3ffb
Cc: stable@vger.kernel.org # v5.7+
Kmods SIG 9e3ffb
Reported-by: Ganapathi Kamath <hgkamath@hotmail.com>
Kmods SIG 9e3ffb
Signed-off-by: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 9e3ffb
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Kmods SIG 9e3ffb
---
Kmods SIG 9e3ffb
 src/inode.c | 2 +-
Kmods SIG 9e3ffb
 1 file changed, 1 insertion(+), 1 deletion(-)
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
diff --git a/src/inode.c b/src/inode.c
Kmods SIG 9e3ffb
index ca37d43443612c61200b07b69e40993ea0eff8d2..1c7aa1ea4724cf03e49daef0e730dc620200088f 100644
Kmods SIG 9e3ffb
--- a/src/inode.c
Kmods SIG 9e3ffb
+++ b/src/inode.c
Kmods SIG 9e3ffb
@@ -604,7 +604,7 @@ static int exfat_fill_inode(struct inode *inode, struct exfat_dir_entry *info)
Kmods SIG 9e3ffb
 	exfat_save_attr(inode, info->attr);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	inode->i_blocks = ((i_size_read(inode) + (sbi->cluster_size - 1)) &
Kmods SIG 9e3ffb
-		~(sbi->cluster_size - 1)) >> inode->i_blkbits;
Kmods SIG 9e3ffb
+		~((loff_t)sbi->cluster_size - 1)) >> inode->i_blkbits;
Kmods SIG 9e3ffb
 	inode->i_mtime = info->mtime;
Kmods SIG 9e3ffb
 	inode->i_ctime = info->mtime;
Kmods SIG 9e3ffb
 	ei->i_crtime = info->crtime;
Kmods SIG 9e3ffb
-- 
Kmods SIG 9e3ffb
2.31.1
Kmods SIG 9e3ffb