arm64: dts: marvell: use new binding for the system controller on ap806
[linux-2.6/btrfs-unstable.git] / lib / test_list_sort.c
blob28e817387b04f1c8862c54deefd4e8309f26437e
1 #define pr_fmt(fmt) "list_sort_test: " fmt
3 #include <linux/kernel.h>
4 #include <linux/list_sort.h>
5 #include <linux/list.h>
6 #include <linux/module.h>
7 #include <linux/printk.h>
8 #include <linux/slab.h>
9 #include <linux/random.h>
12 * The pattern of set bits in the list length determines which cases
13 * are hit in list_sort().
15 #define TEST_LIST_LEN (512+128+2) /* not including head */
17 #define TEST_POISON1 0xDEADBEEF
18 #define TEST_POISON2 0xA324354C
20 struct debug_el {
21 unsigned int poison1;
22 struct list_head list;
23 unsigned int poison2;
24 int value;
25 unsigned serial;
28 /* Array, containing pointers to all elements in the test list */
29 static struct debug_el **elts __initdata;
31 static int __init check(struct debug_el *ela, struct debug_el *elb)
33 if (ela->serial >= TEST_LIST_LEN) {
34 pr_err("error: incorrect serial %d\n", ela->serial);
35 return -EINVAL;
37 if (elb->serial >= TEST_LIST_LEN) {
38 pr_err("error: incorrect serial %d\n", elb->serial);
39 return -EINVAL;
41 if (elts[ela->serial] != ela || elts[elb->serial] != elb) {
42 pr_err("error: phantom element\n");
43 return -EINVAL;
45 if (ela->poison1 != TEST_POISON1 || ela->poison2 != TEST_POISON2) {
46 pr_err("error: bad poison: %#x/%#x\n",
47 ela->poison1, ela->poison2);
48 return -EINVAL;
50 if (elb->poison1 != TEST_POISON1 || elb->poison2 != TEST_POISON2) {
51 pr_err("error: bad poison: %#x/%#x\n",
52 elb->poison1, elb->poison2);
53 return -EINVAL;
55 return 0;
58 static int __init cmp(void *priv, struct list_head *a, struct list_head *b)
60 struct debug_el *ela, *elb;
62 ela = container_of(a, struct debug_el, list);
63 elb = container_of(b, struct debug_el, list);
65 check(ela, elb);
66 return ela->value - elb->value;
69 static int __init list_sort_test(void)
71 int i, count = 1, err = -ENOMEM;
72 struct debug_el *el;
73 struct list_head *cur;
74 LIST_HEAD(head);
76 pr_debug("start testing list_sort()\n");
78 elts = kcalloc(TEST_LIST_LEN, sizeof(*elts), GFP_KERNEL);
79 if (!elts) {
80 pr_err("error: cannot allocate memory\n");
81 return err;
84 for (i = 0; i < TEST_LIST_LEN; i++) {
85 el = kmalloc(sizeof(*el), GFP_KERNEL);
86 if (!el) {
87 pr_err("error: cannot allocate memory\n");
88 goto exit;
90 /* force some equivalencies */
91 el->value = prandom_u32() % (TEST_LIST_LEN / 3);
92 el->serial = i;
93 el->poison1 = TEST_POISON1;
94 el->poison2 = TEST_POISON2;
95 elts[i] = el;
96 list_add_tail(&el->list, &head);
99 list_sort(NULL, &head, cmp);
101 err = -EINVAL;
102 for (cur = head.next; cur->next != &head; cur = cur->next) {
103 struct debug_el *el1;
104 int cmp_result;
106 if (cur->next->prev != cur) {
107 pr_err("error: list is corrupted\n");
108 goto exit;
111 cmp_result = cmp(NULL, cur, cur->next);
112 if (cmp_result > 0) {
113 pr_err("error: list is not sorted\n");
114 goto exit;
117 el = container_of(cur, struct debug_el, list);
118 el1 = container_of(cur->next, struct debug_el, list);
119 if (cmp_result == 0 && el->serial >= el1->serial) {
120 pr_err("error: order of equivalent elements not "
121 "preserved\n");
122 goto exit;
125 if (check(el, el1)) {
126 pr_err("error: element check failed\n");
127 goto exit;
129 count++;
131 if (head.prev != cur) {
132 pr_err("error: list is corrupted\n");
133 goto exit;
137 if (count != TEST_LIST_LEN) {
138 pr_err("error: bad list length %d", count);
139 goto exit;
142 err = 0;
143 exit:
144 for (i = 0; i < TEST_LIST_LEN; i++)
145 kfree(elts[i]);
146 kfree(elts);
147 return err;
149 module_init(list_sort_test);
150 MODULE_LICENSE("GPL");