The quilt patch titled Subject: lib: dhry: use ktime_ms_delta() helper has been removed from the -mm tree. Its filename was lib-dhry-use-ktime_ms_delta-helper.patch This patch was dropped because it was merged into the mm-hotfixes-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Subject: lib: dhry: use ktime_ms_delta() helper Date: Mon, 22 Jan 2024 15:50:44 +0100 Use the existing ktime_ms_delta() helper instead of open-coding the same operation. Link: https://lkml.kernel.org/r/bb43c67a7580de6152f5e6eb225071166d33b6e4.1705934853.git.geert+renesas@xxxxxxxxx Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/dhry_1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/dhry_1.c~lib-dhry-use-ktime_ms_delta-helper +++ a/lib/dhry_1.c @@ -277,7 +277,7 @@ int dhry(int n) dhry_assert_string_eq(Str_1_Loc, "DHRYSTONE PROGRAM, 1'ST STRING"); dhry_assert_string_eq(Str_2_Loc, "DHRYSTONE PROGRAM, 2'ND STRING"); - User_Time = ktime_to_ms(ktime_sub(End_Time, Begin_Time)); + User_Time = ktime_ms_delta(End_Time, Begin_Time); kfree(Ptr_Glob); kfree(Next_Ptr_Glob); _ Patches currently in -mm which might be from geert+renesas@xxxxxxxxx are