Patch "erofs: fix fsdax unavailability for chunk-based regular files" has been added to the 6.4-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    erofs: fix fsdax unavailability for chunk-based regular files

to the 6.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     erofs-fix-fsdax-unavailability-for-chunk-based-regul.patch
and it can be found in the queue-6.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 625c8bd6b37ff491ca8ee641313b1693e0a5d5f2
Author: Xin Yin <yinxin.x@xxxxxxxxxxxxx>
Date:   Tue Jul 11 14:21:30 2023 +0800

    erofs: fix fsdax unavailability for chunk-based regular files
    
    [ Upstream commit 18bddc5b67038722cb88fcf51fbf41a0277092cb ]
    
    DAX can be used to share page cache between VMs, reducing guest memory
    overhead. And chunk based data format is widely used for VM and
    container image. So enable dax support for it, make erofs better used
    for VM scenarios.
    
    Fixes: c5aa903a59db ("erofs: support reading chunk-based uncompressed files")
    Signed-off-by: Xin Yin <yinxin.x@xxxxxxxxxxxxx>
    Reviewed-by: Gao Xiang <hsiangkao@xxxxxxxxxxxxxxxxx>
    Reviewed-by: Chao Yu <chao@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230711062130.7860-1-yinxin.x@xxxxxxxxxxxxx
    Signed-off-by: Gao Xiang <hsiangkao@xxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/erofs/inode.c b/fs/erofs/inode.c
index d70b12b81507f..e12592727a546 100644
--- a/fs/erofs/inode.c
+++ b/fs/erofs/inode.c
@@ -183,7 +183,8 @@ static void *erofs_read_inode(struct erofs_buf *buf,
 
 	inode->i_flags &= ~S_DAX;
 	if (test_opt(&sbi->opt, DAX_ALWAYS) && S_ISREG(inode->i_mode) &&
-	    vi->datalayout == EROFS_INODE_FLAT_PLAIN)
+	    (vi->datalayout == EROFS_INODE_FLAT_PLAIN ||
+	     vi->datalayout == EROFS_INODE_CHUNK_BASED))
 		inode->i_flags |= S_DAX;
 
 	if (!nblks)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux