sort.c 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * A fast, small, non-recursive O(nlog n) sort for the Linux kernel
 *
 * Jan 23 2005  Matt Mackall <mpm@selenic.com>
 */

7 8
#include <linux/types.h>
#include <linux/export.h>
A
Adrian Bunk 已提交
9
#include <linux/sort.h>
L
Linus Torvalds 已提交
10

11 12 13 14 15 16
static int alignment_ok(const void *base, int align)
{
	return IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) ||
		((unsigned long)base & (align - 1)) == 0;
}

A
Adrian Bunk 已提交
17
static void u32_swap(void *a, void *b, int size)
L
Linus Torvalds 已提交
18 19 20 21 22 23
{
	u32 t = *(u32 *)a;
	*(u32 *)a = *(u32 *)b;
	*(u32 *)b = t;
}

24 25 26 27 28 29 30
static void u64_swap(void *a, void *b, int size)
{
	u64 t = *(u64 *)a;
	*(u64 *)a = *(u64 *)b;
	*(u64 *)b = t;
}

A
Adrian Bunk 已提交
31
static void generic_swap(void *a, void *b, int size)
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41
{
	char t;

	do {
		t = *(char *)a;
		*(char *)a++ = *(char *)b;
		*(char *)b++ = t;
	} while (--size > 0);
}

42
/**
L
Linus Torvalds 已提交
43 44 45 46
 * sort - sort an array of elements
 * @base: pointer to data to sort
 * @num: number of elements
 * @size: size of each element
47 48
 * @cmp_func: pointer to comparison function
 * @swap_func: pointer to swap function or NULL
L
Linus Torvalds 已提交
49 50
 *
 * This function does a heapsort on the given array. You may provide a
51
 * swap_func function optimized to your element type.
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59
 *
 * Sorting time is O(n log n) both on average and worst-case. While
 * qsort is about 20% faster on average, it suffers from exploitable
 * O(n*n) worst-case behavior and extra memory requirements that make
 * it less suitable for kernel use.
 */

void sort(void *base, size_t num, size_t size,
60 61
	  int (*cmp_func)(const void *, const void *),
	  void (*swap_func)(void *, void *, int size))
L
Linus Torvalds 已提交
62 63
{
	/* pre-scale counters for performance */
K
keios 已提交
64
	int i = (num/2 - 1) * size, n = num * size, c, r;
L
Linus Torvalds 已提交
65

66 67 68 69 70 71 72 73
	if (!swap_func) {
		if (size == 4 && alignment_ok(base, 4))
			swap_func = u32_swap;
		else if (size == 8 && alignment_ok(base, 8))
			swap_func = u64_swap;
		else
			swap_func = generic_swap;
	}
L
Linus Torvalds 已提交
74 75 76

	/* heapify */
	for ( ; i >= 0; i -= size) {
K
keios 已提交
77 78
		for (r = i; r * 2 + size < n; r  = c) {
			c = r * 2 + size;
79 80
			if (c < n - size &&
					cmp_func(base + c, base + c + size) < 0)
L
Linus Torvalds 已提交
81
				c += size;
82
			if (cmp_func(base + r, base + c) >= 0)
L
Linus Torvalds 已提交
83
				break;
84
			swap_func(base + r, base + c, size);
L
Linus Torvalds 已提交
85 86 87 88
		}
	}

	/* sort */
S
Subbaiah Venkata 已提交
89
	for (i = n - size; i > 0; i -= size) {
90
		swap_func(base, base + i, size);
K
keios 已提交
91 92
		for (r = 0; r * 2 + size < i; r = c) {
			c = r * 2 + size;
93 94
			if (c < i - size &&
					cmp_func(base + c, base + c + size) < 0)
L
Linus Torvalds 已提交
95
				c += size;
96
			if (cmp_func(base + r, base + c) >= 0)
L
Linus Torvalds 已提交
97
				break;
98
			swap_func(base + r, base + c, size);
L
Linus Torvalds 已提交
99 100 101 102 103 104 105
		}
	}
}

EXPORT_SYMBOL(sort);

#if 0
106
#include <linux/slab.h>
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114 115
/* a simple boot-time regression test */

int cmpint(const void *a, const void *b)
{
	return *(int *)a - *(int *)b;
}

static int sort_test(void)
{
116
	int *a, i, r = 1;
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142

	a = kmalloc(1000 * sizeof(int), GFP_KERNEL);
	BUG_ON(!a);

	printk("testing sort()\n");

	for (i = 0; i < 1000; i++) {
		r = (r * 725861) % 6599;
		a[i] = r;
	}

	sort(a, 1000, sizeof(int), cmpint, NULL);

	for (i = 0; i < 999; i++)
		if (a[i] > a[i+1]) {
			printk("sort() failed!\n");
			break;
		}

	kfree(a);

	return 0;
}

module_init(sort_test);
#endif