The quilt patch titled Subject: lib/sort: remove unused pr_fmt macro has been removed from the -mm tree. Its filename was lib-sort-remove-unused-pr_fmt-macro.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Kuan-Wei Chiu <visitorckw@xxxxxxxxx> Subject: lib/sort: remove unused pr_fmt macro Date: Tue, 28 May 2024 04:30:08 +0800 Patch series "lib/sort: Optimizations and cleanups". This patch series optimizes the handling of the last 2 or 3 elements in lib/sort and adds a testcase in lib/test_sort to maintain 100% code coverage reflecting this change. Additionally, it corrects outdated descriptions regarding glibc qsort() and removes the unused pr_fmt macro. This patch (of 4): The pr_fmt macro is defined but not used in lib/sort.c. Since there are no pr_* functions printing any messages, the pr_fmt macro is redundant and can be safely removed. Link: https://lkml.kernel.org/r/20240527203011.1644280-1-visitorckw@xxxxxxxxx Link: https://lkml.kernel.org/r/20240527203011.1644280-2-visitorckw@xxxxxxxxx Signed-off-by: Kuan-Wei Chiu <visitorckw@xxxxxxxxx> Cc: Ching-Chun (Jim) Huang <jserv@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/sort.c | 2 -- 1 file changed, 2 deletions(-) --- a/lib/sort.c~lib-sort-remove-unused-pr_fmt-macro +++ a/lib/sort.c @@ -10,8 +10,6 @@ * quicksort's O(n^2) worst case. */ -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - #include <linux/types.h> #include <linux/export.h> #include <linux/sort.h> _ Patches currently in -mm which might be from visitorckw@xxxxxxxxx are