mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] f2fs: fix 0 addr of multi devices when dio mapping
@ 2024-03-29  6:55 Wu Bo
  2024-03-29 10:27 ` Chao Yu
  0 siblings, 1 reply; 2+ messages in thread
From: Wu Bo @ 2024-03-29  6:55 UTC (permalink / raw)
  To: Jaegeuk Kim, Chao Yu; +Cc: linux-f2fs-devel, linux-kernel, Wu Bo, Wu Bo

Consider of a f2fs system with 2 devices:
Info: Device[0] : /dev/block/dm-46 blkaddr = 0--3fffff
Info: Device[1] : /dev/block/dm-47 blkaddr = 400000--67fffff

f2fs_map_blocks will return logical addr of fs when doing buffered io:
f2fs_map_blocks: dev = (254,46), ino = 40020, file offset = 462865, start blkaddr = 0x400000

While dio mapping will return the addr of device:
f2fs_map_blocks: dev = (254,47), ino = 40020, file offset = 462865, start blkaddr = 0x0

So the addr=0 is valid when the map.m_bdev is not s_bdev.

Fixes: 8d3c1fa3fa5e ("f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_begin")
Signed-off-by: Wu Bo <bo.wu@vivo.com>
---
 fs/f2fs/data.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index d9494b5fc7c1..dca3628932c7 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -4185,7 +4185,8 @@ static int f2fs_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
 	if (WARN_ON_ONCE(map.m_pblk == COMPRESS_ADDR))
 		return -EINVAL;
 
-	if (map.m_pblk != NULL_ADDR) {
+	if (map.m_pblk != NULL_ADDR ||
+		(map.m_multidev_dio && map.m_bdev != inode->i_sb->s_bdev)) {
 		iomap->length = blks_to_bytes(inode, map.m_len);
 		iomap->type = IOMAP_MAPPED;
 		iomap->flags |= IOMAP_F_MERGED;
-- 
2.25.1


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

* Re: [PATCH] f2fs: fix 0 addr of multi devices when dio mapping
  2024-03-29  6:55 [PATCH] f2fs: fix 0 addr of multi devices when dio mapping Wu Bo
@ 2024-03-29 10:27 ` Chao Yu
  0 siblings, 0 replies; 2+ messages in thread
From: Chao Yu @ 2024-03-29 10:27 UTC (permalink / raw)
  To: Wu Bo, Jaegeuk Kim; +Cc: linux-f2fs-devel, linux-kernel, Wu Bo

On 2024/3/29 14:55, Wu Bo wrote:
> Consider of a f2fs system with 2 devices:
> Info: Device[0] : /dev/block/dm-46 blkaddr = 0--3fffff
> Info: Device[1] : /dev/block/dm-47 blkaddr = 400000--67fffff
> 
> f2fs_map_blocks will return logical addr of fs when doing buffered io:
> f2fs_map_blocks: dev = (254,46), ino = 40020, file offset = 462865, start blkaddr = 0x400000
> 
> While dio mapping will return the addr of device:
> f2fs_map_blocks: dev = (254,47), ino = 40020, file offset = 462865, start blkaddr = 0x0
> 
> So the addr=0 is valid when the map.m_bdev is not s_bdev.

Thanks for catching this, there is already a formal patch as below link:

https://lore.kernel.org/linux-f2fs-devel/20240327074223.2216487-1-chao@kernel.org

Thanks,

> 
> Fixes: 8d3c1fa3fa5e ("f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_begin")
> Signed-off-by: Wu Bo <bo.wu@vivo.com>
> ---
>   fs/f2fs/data.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
> index d9494b5fc7c1..dca3628932c7 100644
> --- a/fs/f2fs/data.c
> +++ b/fs/f2fs/data.c
> @@ -4185,7 +4185,8 @@ static int f2fs_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
>   	if (WARN_ON_ONCE(map.m_pblk == COMPRESS_ADDR))
>   		return -EINVAL;
>   
> -	if (map.m_pblk != NULL_ADDR) {
> +	if (map.m_pblk != NULL_ADDR ||
> +		(map.m_multidev_dio && map.m_bdev != inode->i_sb->s_bdev)) {
>   		iomap->length = blks_to_bytes(inode, map.m_len);
>   		iomap->type = IOMAP_MAPPED;
>   		iomap->flags |= IOMAP_F_MERGED;

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

end of thread, other threads:[~2024-03-29 10:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-29  6:55 [PATCH] f2fs: fix 0 addr of multi devices when dio mapping Wu Bo
2024-03-29 10:27 ` Chao Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®