lib/list_sort: test: improve errors handling
The 'lib_sort()' test does not free memory if it fails, and it makes the kernel panic if it cannot allocate memory. This patch fixes the problem. This patch also changes several small things: o use 'list_add()' helper instead of adding manually o introduce temporary 'el1' variable to avoid ugly and unreadalbe "if" statement o make 'head' to be stack variable instead of 'kmalloc()'ed, which simplifies code a bit Overall, this patch is of clean-up type. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Cc: Don Mullis <don.mullis@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
eeee9ebb54
commit
f3dc0e3842
|
@ -165,56 +165,67 @@ static int cmp(void *priv, struct list_head *a, struct list_head *b)
|
||||||
|
|
||||||
static int __init list_sort_test(void)
|
static int __init list_sort_test(void)
|
||||||
{
|
{
|
||||||
int i, count;
|
int i, count = 1, err = -EINVAL;
|
||||||
struct list_head *head = kmalloc(sizeof(*head), GFP_KERNEL);
|
struct debug_el *el;
|
||||||
struct list_head *cur;
|
struct list_head *cur, *tmp;
|
||||||
|
LIST_HEAD(head);
|
||||||
|
|
||||||
printk(KERN_DEBUG "testing list_sort()\n");
|
printk(KERN_DEBUG "testing list_sort()\n");
|
||||||
|
|
||||||
cur = head;
|
|
||||||
for (i = 0; i < TEST_LIST_LEN; i++) {
|
for (i = 0; i < TEST_LIST_LEN; i++) {
|
||||||
struct debug_el *el = kmalloc(sizeof(*el), GFP_KERNEL);
|
el = kmalloc(sizeof(*el), GFP_KERNEL);
|
||||||
BUG_ON(!el);
|
if (!el) {
|
||||||
|
printk(KERN_ERR "cancel list_sort() testing - cannot "
|
||||||
|
"allocate memory\n");
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
/* force some equivalencies */
|
/* force some equivalencies */
|
||||||
el->value = random32() % (TEST_LIST_LEN/3);
|
el->value = random32() % (TEST_LIST_LEN/3);
|
||||||
el->serial = i;
|
el->serial = i;
|
||||||
|
list_add_tail(&el->list, &head);
|
||||||
el->list.prev = cur;
|
|
||||||
cur->next = &el->list;
|
|
||||||
cur = cur->next;
|
|
||||||
}
|
}
|
||||||
head->prev = cur;
|
|
||||||
|
|
||||||
list_sort(NULL, head, cmp);
|
list_sort(NULL, &head, cmp);
|
||||||
|
|
||||||
|
for (cur = head.next; cur->next != &head; cur = cur->next) {
|
||||||
|
struct debug_el *el1;
|
||||||
|
int cmp_result;
|
||||||
|
|
||||||
count = 1;
|
|
||||||
for (cur = head->next; cur->next != head; cur = cur->next) {
|
|
||||||
struct debug_el *el = container_of(cur, struct debug_el, list);
|
|
||||||
int cmp_result = cmp(NULL, cur, cur->next);
|
|
||||||
if (cur->next->prev != cur) {
|
if (cur->next->prev != cur) {
|
||||||
printk(KERN_ERR "list_sort() returned "
|
printk(KERN_ERR "list_sort() returned "
|
||||||
"a corrupted list!\n");
|
"a corrupted list!\n");
|
||||||
return 1;
|
goto exit;
|
||||||
} else if (cmp_result > 0) {
|
}
|
||||||
|
|
||||||
|
cmp_result = cmp(NULL, cur, cur->next);
|
||||||
|
if (cmp_result > 0) {
|
||||||
printk(KERN_ERR "list_sort() failed to sort!\n");
|
printk(KERN_ERR "list_sort() failed to sort!\n");
|
||||||
return 1;
|
goto exit;
|
||||||
} else if (cmp_result == 0 &&
|
}
|
||||||
el->serial >= container_of(cur->next,
|
|
||||||
struct debug_el, list)->serial) {
|
el = container_of(cur, struct debug_el, list);
|
||||||
|
el1 = container_of(cur->next, struct debug_el, list);
|
||||||
|
if (cmp_result == 0 && el->serial >= el1->serial) {
|
||||||
printk(KERN_ERR "list_sort() failed to preserve order "
|
printk(KERN_ERR "list_sort() failed to preserve order "
|
||||||
"of equivalent elements!\n");
|
"of equivalent elements!\n");
|
||||||
return 1;
|
goto exit;
|
||||||
}
|
}
|
||||||
kfree(cur->prev);
|
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
kfree(cur);
|
|
||||||
if (count != TEST_LIST_LEN) {
|
if (count != TEST_LIST_LEN) {
|
||||||
printk(KERN_ERR "list_sort() returned list of "
|
printk(KERN_ERR "list_sort() returned list of "
|
||||||
"different length!\n");
|
"different length!\n");
|
||||||
return 1;
|
goto exit;
|
||||||
}
|
}
|
||||||
return 0;
|
|
||||||
|
err = 0;
|
||||||
|
exit:
|
||||||
|
list_for_each_safe(cur, tmp, &head) {
|
||||||
|
list_del(cur);
|
||||||
|
kfree(container_of(cur, struct debug_el, list));
|
||||||
|
}
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
module_init(list_sort_test);
|
module_init(list_sort_test);
|
||||||
#endif /* CONFIG_TEST_LIST_SORT */
|
#endif /* CONFIG_TEST_LIST_SORT */
|
||||||
|
|
Loading…
Reference in New Issue