The quilt patch titled Subject: s390-kernel-convert-timeouts-to-use-secs_to_jiffies-fix has been removed from the -mm tree. Its filename was s390-kernel-convert-timeouts-to-use-secs_to_jiffies-fix.patch This patch was dropped because it was folded into s390-kernel-convert-timeouts-to-use-secs_to_jiffies.patch ------------------------------------------------------ From: Alexander Gordeev <agordeev@xxxxxxxxxxxxx> Subject: s390-kernel-convert-timeouts-to-use-secs_to_jiffies-fix Date: Tue, 17 Dec 2024 18:31:16 +0100 simplify cmm_set_timer() Link: https://lkml.kernel.org/r/Z2G1ZPL2cAlQOYlF@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Signed-off-by: Alexander Gordeev <agordeev@xxxxxxxxxxxxx> Cc: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/s390/mm/cmm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/s390/mm/cmm.c~s390-kernel-convert-timeouts-to-use-secs_to_jiffies-fix +++ a/arch/s390/mm/cmm.c @@ -204,7 +204,7 @@ static void cmm_set_timer(void) del_timer(&cmm_timer); return; } - mod_timer(&cmm_timer, jiffies + msecs_to_jiffies(cmm_timeout_seconds * MSEC_PER_SEC)); + mod_timer(&cmm_timer, jiffies + secs_to_jiffies(cmm_timeout_seconds)); } static void cmm_timer_fn(struct timer_list *unused) _ Patches currently in -mm which might be from agordeev@xxxxxxxxxxxxx are s390-kernel-convert-timeouts-to-use-secs_to_jiffies.patch