diff options
| author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-02-12 18:03:10 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:16 -0500 |
| commit | 2ddae683bf36d50b960402a94a55047ab0c73e2c (patch) | |
| tree | 60f4e5c60f8a7b9ba5c589601c3f62ac7d417a42 /lib | |
| parent | b8b6db1793551fac131834d413199197f86b6b5f (diff) | |
lib/sort.c: move include inside #if 0
The sort function and its helpers don't do memory allocation, so the
slab.h include is redundant. Move it inside the #if 0 protecting the
self-test, similar to how it is done in lib/list_sort.c. This removes
over 450 lines from the generated dependency file.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sort.c b/lib/sort.c index 14fc1dfadb3f..43c9fe73ae2e 100644 --- a/lib/sort.c +++ b/lib/sort.c | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | #include <linux/types.h> | 7 | #include <linux/types.h> |
| 8 | #include <linux/export.h> | 8 | #include <linux/export.h> |
| 9 | #include <linux/sort.h> | 9 | #include <linux/sort.h> |
| 10 | #include <linux/slab.h> | ||
| 11 | 10 | ||
| 12 | static void u32_swap(void *a, void *b, int size) | 11 | static void u32_swap(void *a, void *b, int size) |
| 13 | { | 12 | { |
| @@ -85,6 +84,7 @@ void sort(void *base, size_t num, size_t size, | |||
| 85 | EXPORT_SYMBOL(sort); | 84 | EXPORT_SYMBOL(sort); |
| 86 | 85 | ||
| 87 | #if 0 | 86 | #if 0 |
| 87 | #include <linux/slab.h> | ||
| 88 | /* a simple boot-time regression test */ | 88 | /* a simple boot-time regression test */ |
| 89 | 89 | ||
| 90 | int cmpint(const void *a, const void *b) | 90 | int cmpint(const void *a, const void *b) |
