Skip to content

Commit

Permalink
lib/test_bitmap.c: add bitmap_fill()/bitmap_set() test cases
Browse files Browse the repository at this point in the history
Explicitly test bitmap_fill() and bitmap_set() functions.

For bitmap_fill() we expect a consistent behaviour as in bitmap_zero(),
i.e.  the trailing bits will be set up to unsigned long boundary.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Yury Norov <[email protected]>
Cc: Randy Dunlap <[email protected]>
Cc: Rasmus Villemoes <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
andy-shev authored and torvalds committed Feb 7, 2018
1 parent ee3527b commit 978f369
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions lib/test_bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,35 @@ static void __init test_zero_clear(void)
expect_eq_pbl("", bmap, 1024);
}

static void __init test_fill_set(void)
{
DECLARE_BITMAP(bmap, 1024);

/* Known way to clear all bits */
memset(bmap, 0x00, 128);

expect_eq_pbl("", bmap, 23);
expect_eq_pbl("", bmap, 1024);

/* single-word bitmaps */
bitmap_set(bmap, 0, 9);
expect_eq_pbl("0-8", bmap, 1024);

bitmap_fill(bmap, 35);
expect_eq_pbl("0-63", bmap, 1024);

/* cross boundaries operations */
bitmap_set(bmap, 79, 19);
expect_eq_pbl("0-63,79-97", bmap, 1024);

bitmap_fill(bmap, 115);
expect_eq_pbl("0-127", bmap, 1024);

/* Zeroing entire area */
bitmap_fill(bmap, 1024);
expect_eq_pbl("0-1023", bmap, 1024);
}

static void __init test_zero_fill_copy(void)
{
DECLARE_BITMAP(bmap1, 1024);
Expand Down Expand Up @@ -339,6 +368,7 @@ static void noinline __init test_mem_optimisations(void)
static int __init test_bitmap_init(void)
{
test_zero_clear();
test_fill_set();
test_zero_fill_copy();
test_bitmap_arr32();
test_bitmap_parselist();
Expand Down

0 comments on commit 978f369

Please sign in to comment.