Patch "hugetlbfs: fix hugetlbfs_statfs() locking" has been added to the 5.18-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

    hugetlbfs: fix hugetlbfs_statfs() locking

to the 5.18-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:
     hugetlbfs-fix-hugetlbfs_statfs-locking.patch
and it can be found in the queue-5.18 subdirectory.

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



commit 68da70824b8b0e92f17adc89f18cbbe7b7175a84
Author: Mina Almasry <almasrymina@xxxxxxxxxx>
Date:   Mon May 9 18:20:50 2022 -0700

    hugetlbfs: fix hugetlbfs_statfs() locking
    
    [ Upstream commit 4b25f030ae69ba710eff587cabb4c57cb7e7a8a1 ]
    
    After commit db71ef79b59b ("hugetlb: make free_huge_page irq safe"), the
    subpool lock should be locked with spin_lock_irq() and all call sites was
    modified as such, except for the ones in hugetlbfs_statfs().
    
    Link: https://lkml.kernel.org/r/20220429202207.3045-1-almasrymina@xxxxxxxxxx
    Fixes: db71ef79b59b ("hugetlb: make free_huge_page irq safe")
    Signed-off-by: Mina Almasry <almasrymina@xxxxxxxxxx>
    Reviewed-by: Mike Kravetz <mike.kravetz@xxxxxxxxxx>
    Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
index dd3a088db11d..591599829e2a 100644
--- a/fs/hugetlbfs/inode.c
+++ b/fs/hugetlbfs/inode.c
@@ -1048,12 +1048,12 @@ static int hugetlbfs_statfs(struct dentry *dentry, struct kstatfs *buf)
 		if (sbinfo->spool) {
 			long free_pages;
 
-			spin_lock(&sbinfo->spool->lock);
+			spin_lock_irq(&sbinfo->spool->lock);
 			buf->f_blocks = sbinfo->spool->max_hpages;
 			free_pages = sbinfo->spool->max_hpages
 				- sbinfo->spool->used_hpages;
 			buf->f_bavail = buf->f_bfree = free_pages;
-			spin_unlock(&sbinfo->spool->lock);
+			spin_unlock_irq(&sbinfo->spool->lock);
 			buf->f_files = sbinfo->max_inodes;
 			buf->f_ffree = sbinfo->free_inodes;
 		}



[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