All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] erofs: use wrapper i_blocksize() in erofs_file_read_iter()
@ 2023-03-06  7:55 ` Yue Hu
  0 siblings, 0 replies; 18+ messages in thread
From: Yue Hu @ 2023-03-06  7:55 UTC (permalink / raw)
  To: xiang, chao, jefflexu, linux-erofs; +Cc: huyue2, linux-kernel, zhangwen

From: Yue Hu <huyue2@coolpad.com>

linux/fs.h has a wrapper for this operation.

Signed-off-by: Yue Hu <huyue2@coolpad.com>
---
 fs/erofs/data.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/erofs/data.c b/fs/erofs/data.c
index 5bd0c956a142..7e8baf56faa5 100644
--- a/fs/erofs/data.c
+++ b/fs/erofs/data.c
@@ -380,7 +380,7 @@ static ssize_t erofs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
 		if (bdev)
 			blksize_mask = bdev_logical_block_size(bdev) - 1;
 		else
-			blksize_mask = (1 << inode->i_blkbits) - 1;
+			blksize_mask = i_blocksize(inode) - 1;
 
 		if ((iocb->ki_pos | iov_iter_count(to) |
 		     iov_iter_alignment(to)) & blksize_mask)
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2023-03-09 14:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-06  7:55 [PATCH] erofs: use wrapper i_blocksize() in erofs_file_read_iter() Yue Hu
2023-03-06  7:55 ` Yue Hu
2023-03-06 14:46 ` Gao Xiang
2023-03-06 14:46   ` Gao Xiang
2023-03-09  7:15 ` Yangtao Li
2023-03-09  7:15   ` Yangtao Li
2023-03-09  7:36   ` Jingbo Xu
2023-03-09  7:36     ` Jingbo Xu
2023-03-09  7:42     ` Yangtao Li
2023-03-09  7:42       ` Yangtao Li
2023-03-09  8:09       ` Gao Xiang
2023-03-09  8:09         ` Gao Xiang
2023-03-09  7:37   ` Yue Hu
2023-03-09  7:37     ` Yue Hu
2023-03-09  8:07     ` Gao Xiang
2023-03-09  8:07       ` Gao Xiang
2023-03-09 14:33 ` [PATCH] " Chao Yu
2023-03-09 14:33   ` Chao Yu

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.