Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * A fast, small, non-recursive O(nlog n) sort for the Linux kernel |
| 3 | * |
| 4 | * Jan 23 2005 Matt Mackall <mpm@selenic.com> |
| 5 | */ |
| 6 | |
Rasmus Villemoes | 42cf809 | 2015-02-12 15:02:35 -0800 | [diff] [blame] | 7 | #include <linux/types.h> |
| 8 | #include <linux/export.h> |
Adrian Bunk | ecec4cb | 2005-09-10 00:26:59 -0700 | [diff] [blame] | 9 | #include <linux/sort.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Adrian Bunk | ecec4cb | 2005-09-10 00:26:59 -0700 | [diff] [blame] | 11 | static void u32_swap(void *a, void *b, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | { |
| 13 | u32 t = *(u32 *)a; |
| 14 | *(u32 *)a = *(u32 *)b; |
| 15 | *(u32 *)b = t; |
| 16 | } |
| 17 | |
Adrian Bunk | ecec4cb | 2005-09-10 00:26:59 -0700 | [diff] [blame] | 18 | static void generic_swap(void *a, void *b, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | { |
| 20 | char t; |
| 21 | |
| 22 | do { |
| 23 | t = *(char *)a; |
| 24 | *(char *)a++ = *(char *)b; |
| 25 | *(char *)b++ = t; |
| 26 | } while (--size > 0); |
| 27 | } |
| 28 | |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 29 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * sort - sort an array of elements |
| 31 | * @base: pointer to data to sort |
| 32 | * @num: number of elements |
| 33 | * @size: size of each element |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 34 | * @cmp_func: pointer to comparison function |
| 35 | * @swap_func: pointer to swap function or NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | * |
| 37 | * This function does a heapsort on the given array. You may provide a |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 38 | * swap_func function optimized to your element type. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * |
| 40 | * Sorting time is O(n log n) both on average and worst-case. While |
| 41 | * qsort is about 20% faster on average, it suffers from exploitable |
| 42 | * O(n*n) worst-case behavior and extra memory requirements that make |
| 43 | * it less suitable for kernel use. |
| 44 | */ |
| 45 | |
| 46 | void sort(void *base, size_t num, size_t size, |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 47 | int (*cmp_func)(const void *, const void *), |
| 48 | void (*swap_func)(void *, void *, int size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
| 50 | /* pre-scale counters for performance */ |
keios | d3717bd | 2006-10-03 01:13:49 -0700 | [diff] [blame] | 51 | int i = (num/2 - 1) * size, n = num * size, c, r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 53 | if (!swap_func) |
| 54 | swap_func = (size == 4 ? u32_swap : generic_swap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* heapify */ |
| 57 | for ( ; i >= 0; i -= size) { |
keios | d3717bd | 2006-10-03 01:13:49 -0700 | [diff] [blame] | 58 | for (r = i; r * 2 + size < n; r = c) { |
| 59 | c = r * 2 + size; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 60 | if (c < n - size && |
| 61 | cmp_func(base + c, base + c + size) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | c += size; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 63 | if (cmp_func(base + r, base + c) >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | break; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 65 | swap_func(base + r, base + c, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | |
| 69 | /* sort */ |
Subbaiah Venkata | 995e428 | 2007-10-16 23:27:06 -0700 | [diff] [blame] | 70 | for (i = n - size; i > 0; i -= size) { |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 71 | swap_func(base, base + i, size); |
keios | d3717bd | 2006-10-03 01:13:49 -0700 | [diff] [blame] | 72 | for (r = 0; r * 2 + size < i; r = c) { |
| 73 | c = r * 2 + size; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 74 | if (c < i - size && |
| 75 | cmp_func(base + c, base + c + size) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | c += size; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 77 | if (cmp_func(base + r, base + c) >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | break; |
Wu Fengguang | b53907c | 2009-01-07 18:09:11 -0800 | [diff] [blame] | 79 | swap_func(base + r, base + c, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | EXPORT_SYMBOL(sort); |
| 85 | |
| 86 | #if 0 |
Rasmus Villemoes | 2ddae68 | 2015-02-12 15:03:10 -0800 | [diff] [blame] | 87 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* a simple boot-time regression test */ |
| 89 | |
| 90 | int cmpint(const void *a, const void *b) |
| 91 | { |
| 92 | return *(int *)a - *(int *)b; |
| 93 | } |
| 94 | |
| 95 | static int sort_test(void) |
| 96 | { |
Domen Puncer | d28c2bc | 2005-05-05 16:16:19 -0700 | [diff] [blame] | 97 | int *a, i, r = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | a = kmalloc(1000 * sizeof(int), GFP_KERNEL); |
| 100 | BUG_ON(!a); |
| 101 | |
| 102 | printk("testing sort()\n"); |
| 103 | |
| 104 | for (i = 0; i < 1000; i++) { |
| 105 | r = (r * 725861) % 6599; |
| 106 | a[i] = r; |
| 107 | } |
| 108 | |
| 109 | sort(a, 1000, sizeof(int), cmpint, NULL); |
| 110 | |
| 111 | for (i = 0; i < 999; i++) |
| 112 | if (a[i] > a[i+1]) { |
| 113 | printk("sort() failed!\n"); |
| 114 | break; |
| 115 | } |
| 116 | |
| 117 | kfree(a); |
| 118 | |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | module_init(sort_test); |
| 123 | #endif |