summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKuan-Wei Chiu <visitorckw@gmail.com>2024-05-28 04:30:08 +0800
committerAndrew Morton <akpm@linux-foundation.org>2024-06-24 22:25:02 -0700
commit85fb11a87921a017e5551835eaaf58f9da173686 (patch)
treeecc04540546a2162d5510f6de6d2d564b0b9fc06 /lib
parente1b6705bcfb2797ea182e313d5ec4f57fa8571f2 (diff)
downloadlinux-stable-85fb11a87921a017e5551835eaaf58f9da173686.tar.gz
linux-stable-85fb11a87921a017e5551835eaaf58f9da173686.tar.bz2
linux-stable-85fb11a87921a017e5551835eaaf58f9da173686.zip
lib/sort: remove unused pr_fmt macro
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@gmail.com Link: https://lkml.kernel.org/r/20240527203011.1644280-2-visitorckw@gmail.com Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com> Cc: Ching-Chun (Jim) Huang <jserv@ccns.ncku.edu.tw> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/sort.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sort.c b/lib/sort.c
index a0509088f82a..651b73205f6d 100644
--- a/lib/sort.c
+++ b/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>