Patch "fscache: Use clear_and_wake_up_bit() in fscache_create_volume_work()" has been added to the 6.1-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

    fscache: Use clear_and_wake_up_bit() in fscache_create_volume_work()

to the 6.1-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:
     fscache-use-clear_and_wake_up_bit-in-fscache_create_.patch
and it can be found in the queue-6.1 subdirectory.

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



commit 69e4027ed53bb7dec77677c3e3fe2586dbb6aca9
Author: Hou Tao <houtao1@xxxxxxxxxx>
Date:   Fri Jan 13 19:52:11 2023 +0800

    fscache: Use clear_and_wake_up_bit() in fscache_create_volume_work()
    
    [ Upstream commit 3288666c72568fe1cc7f5c5ae33dfd3ab18004c8 ]
    
    fscache_create_volume_work() uses wake_up_bit() to wake up the processes
    which are waiting for the completion of volume creation. According to
    comments in wake_up_bit() and waitqueue_active(), an extra smp_mb() is
    needed to guarantee the memory order between FSCACHE_VOLUME_CREATING
    flag and waitqueue_active() before invoking wake_up_bit().
    
    Fixing it by using clear_and_wake_up_bit() to add the missing memory
    barrier.
    
    Reviewed-by: Jingbo Xu <jefflexu@xxxxxxxxxxxxxxxxx>
    Signed-off-by: Hou Tao <houtao1@xxxxxxxxxx>
    Signed-off-by: David Howells <dhowells@xxxxxxxxxx>
    Reviewed-by: Jeff Layton <jlayton@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230113115211.2895845-3-houtao@xxxxxxxxxxxxxxx/ # v3
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/fscache/volume.c b/fs/fscache/volume.c
index 903af9d85f8b9..cdf991bdd9def 100644
--- a/fs/fscache/volume.c
+++ b/fs/fscache/volume.c
@@ -280,8 +280,7 @@ static void fscache_create_volume_work(struct work_struct *work)
 	fscache_end_cache_access(volume->cache,
 				 fscache_access_acquire_volume_end);
 
-	clear_bit_unlock(FSCACHE_VOLUME_CREATING, &volume->flags);
-	wake_up_bit(&volume->flags, FSCACHE_VOLUME_CREATING);
+	clear_and_wake_up_bit(FSCACHE_VOLUME_CREATING, &volume->flags);
 	fscache_put_volume(volume, fscache_volume_put_create_work);
 }
 



[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