Commit 5c78b0b1 authored by Matthew Wilcox's avatar Matthew Wilcox

test_ida: Convert check_ida_conv to new API

Move as much as possible to kernel space; leave the parts in user space
that rely on checking memory allocation failures to detect the
transition between an exceptional entry and a bitmap.
Signed-off-by: default avatarMatthew Wilcox <willy@infradead.org>
parent 161b47e3
...@@ -69,6 +69,35 @@ static void ida_check_max(struct ida *ida) ...@@ -69,6 +69,35 @@ static void ida_check_max(struct ida *ida)
} }
} }
/*
* Check handling of conversions between exceptional entries and full bitmaps.
*/
static void ida_check_conv(struct ida *ida)
{
unsigned long i;
for (i = 0; i < IDA_BITMAP_BITS * 2; i += IDA_BITMAP_BITS) {
IDA_BUG_ON(ida, ida_alloc_min(ida, i + 1, GFP_KERNEL) != i + 1);
IDA_BUG_ON(ida, ida_alloc_min(ida, i + BITS_PER_LONG,
GFP_KERNEL) != i + BITS_PER_LONG);
ida_free(ida, i + 1);
ida_free(ida, i + BITS_PER_LONG);
IDA_BUG_ON(ida, !ida_is_empty(ida));
}
for (i = 0; i < IDA_BITMAP_BITS * 2; i++)
IDA_BUG_ON(ida, ida_alloc(ida, GFP_KERNEL) != i);
for (i = IDA_BITMAP_BITS * 2; i > 0; i--)
ida_free(ida, i - 1);
IDA_BUG_ON(ida, !ida_is_empty(ida));
for (i = 0; i < IDA_BITMAP_BITS + BITS_PER_LONG - 4; i++)
IDA_BUG_ON(ida, ida_alloc(ida, GFP_KERNEL) != i);
for (i = IDA_BITMAP_BITS + BITS_PER_LONG - 4; i > 0; i--)
ida_free(ida, i - 1);
IDA_BUG_ON(ida, !ida_is_empty(ida));
}
static int ida_checks(void) static int ida_checks(void)
{ {
DEFINE_IDA(ida); DEFINE_IDA(ida);
...@@ -78,6 +107,7 @@ static int ida_checks(void) ...@@ -78,6 +107,7 @@ static int ida_checks(void)
ida_check_leaf(&ida, 1024); ida_check_leaf(&ida, 1024);
ida_check_leaf(&ida, 1024 * 64); ida_check_leaf(&ida, 1024 * 64);
ida_check_max(&ida); ida_check_max(&ida);
ida_check_conv(&ida);
printk("IDA: %u of %u tests passed\n", tests_passed, tests_run); printk("IDA: %u of %u tests passed\n", tests_passed, tests_run);
return (tests_run != tests_passed) ? 0 : -EINVAL; return (tests_run != tests_passed) ? 0 : -EINVAL;
......
...@@ -339,59 +339,23 @@ void ida_check_nomem(void) ...@@ -339,59 +339,23 @@ void ida_check_nomem(void)
/* /*
* Check handling of conversions between exceptional entries and full bitmaps. * Check handling of conversions between exceptional entries and full bitmaps.
*/ */
void ida_check_conv(void) void ida_check_conv_user(void)
{ {
DEFINE_IDA(ida); DEFINE_IDA(ida);
int id;
unsigned long i; unsigned long i;
for (i = 0; i < IDA_BITMAP_BITS * 2; i += IDA_BITMAP_BITS) {
assert(ida_pre_get(&ida, GFP_KERNEL));
assert(!ida_get_new_above(&ida, i + 1, &id));
assert(id == i + 1);
assert(!ida_get_new_above(&ida, i + BITS_PER_LONG, &id));
assert(id == i + BITS_PER_LONG);
ida_remove(&ida, i + 1);
ida_remove(&ida, i + BITS_PER_LONG);
assert(ida_is_empty(&ida));
}
assert(ida_pre_get(&ida, GFP_KERNEL));
for (i = 0; i < IDA_BITMAP_BITS * 2; i++) {
assert(ida_pre_get(&ida, GFP_KERNEL));
assert(!ida_get_new(&ida, &id));
assert(id == i);
}
for (i = IDA_BITMAP_BITS * 2; i > 0; i--) {
ida_remove(&ida, i - 1);
}
assert(ida_is_empty(&ida));
for (i = 0; i < IDA_BITMAP_BITS + BITS_PER_LONG - 4; i++) {
assert(ida_pre_get(&ida, GFP_KERNEL));
assert(!ida_get_new(&ida, &id));
assert(id == i);
}
for (i = IDA_BITMAP_BITS + BITS_PER_LONG - 4; i > 0; i--) {
ida_remove(&ida, i - 1);
}
assert(ida_is_empty(&ida));
radix_tree_cpu_dead(1); radix_tree_cpu_dead(1);
for (i = 0; i < 1000000; i++) { for (i = 0; i < 1000000; i++) {
int err = ida_get_new(&ida, &id); int id = ida_alloc(&ida, GFP_NOWAIT);
if (err == -EAGAIN) { if (id == -ENOMEM) {
assert((i % IDA_BITMAP_BITS) == (BITS_PER_LONG - 2)); IDA_BUG_ON(&ida, (i % IDA_BITMAP_BITS) !=
assert(ida_pre_get(&ida, GFP_KERNEL)); BITS_PER_LONG - 2);
err = ida_get_new(&ida, &id); id = ida_alloc(&ida, GFP_KERNEL);
} else { } else {
assert((i % IDA_BITMAP_BITS) != (BITS_PER_LONG - 2)); IDA_BUG_ON(&ida, (i % IDA_BITMAP_BITS) ==
BITS_PER_LONG - 2);
} }
assert(!err); IDA_BUG_ON(&ida, id != i);
assert(id == i);
} }
ida_destroy(&ida); ida_destroy(&ida);
} }
...@@ -507,7 +471,7 @@ void user_ida_checks(void) ...@@ -507,7 +471,7 @@ void user_ida_checks(void)
ida_destroy(&ida); ida_destroy(&ida);
assert(ida_is_empty(&ida)); assert(ida_is_empty(&ida));
ida_check_conv(); ida_check_conv_user();
ida_check_random(); ida_check_random();
ida_simple_get_remove_test(); ida_simple_get_remove_test();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment