summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Nan <linan122@huawei.com>2024-05-08 17:20:53 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-08-14 15:34:06 +0200
commite6a81438b2dfb5ad3c1fd1cec5c3d5e62e43a035 (patch)
treea1155cacccc63cc03410625287f51c81a1106d26
parent1e67ea9f705870fd9e7d583d004ef6d295526c77 (diff)
downloadlinux-stable-e6a81438b2dfb5ad3c1fd1cec5c3d5e62e43a035.tar.gz
linux-stable-e6a81438b2dfb5ad3c1fd1cec5c3d5e62e43a035.tar.bz2
linux-stable-e6a81438b2dfb5ad3c1fd1cec5c3d5e62e43a035.zip
md: do not delete safemode_timer in mddev_suspend
[ Upstream commit a8768a134518e406d41799a3594aeb74e0889cf7 ] The deletion of safemode_timer in mddev_suspend() is redundant and potentially harmful now. If timer is about to be woken up but gets deleted, 'in_sync' will remain 0 until the next write, causing array to stay in the 'active' state instead of transitioning to 'clean'. Commit 0d9f4f135eb6 ("MD: Add del_timer_sync to mddev_suspend (fix nasty panic))" introduced this deletion for dm, because if timer fired after dm is destroyed, the resource which the timer depends on might have been freed. However, commit 0dd84b319352 ("md: call __md_stop_writes in md_stop") added __md_stop_writes() to md_stop(), which is called before freeing resource. Timer is deleted in __md_stop_writes(), and the origin issue is resolved. Therefore, delete safemode_timer can be removed safely now. Signed-off-by: Li Nan <linan122@huawei.com> Reviewed-by: Yu Kuai <yukuai3@huawei.com> Signed-off-by: Song Liu <song@kernel.org> Link: https://lore.kernel.org/r/20240508092053.1447930-1-linan666@huaweicloud.com Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/md/md.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 9c5be016e507..60a5fda7c8ae 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -479,7 +479,6 @@ int mddev_suspend(struct mddev *mddev, bool interruptible)
*/
WRITE_ONCE(mddev->suspended, mddev->suspended + 1);
- del_timer_sync(&mddev->safemode_timer);
/* restrict memory reclaim I/O during raid array is suspend */
mddev->noio_flag = memalloc_noio_save();