IDR test suite: Check handling negative end correctly
authorMatthew Wilcox <mawilcox@microsoft.com>
Tue, 28 Nov 2017 19:27:14 +0000 (14:27 -0500)
committerMatthew Wilcox <mawilcox@microsoft.com>
Tue, 6 Feb 2018 20:07:20 +0000 (15:07 -0500)
One of the charming quirks of the idr_alloc() interface is that you
can pass a negative end and it will be interpreted as "maximum".  Ensure
we don't break that.

Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
tools/testing/radix-tree/idr-test.c

index 193450b29bf01473386e30fa4ff4f8ec2136bf39..892ef8855b0245bf6f353c0c35e223b6db347610 100644 (file)
@@ -207,6 +207,7 @@ void idr_checks(void)
                assert(idr_alloc(&idr, item, i, i + 10, GFP_KERNEL) == i);
        }
        assert(idr_alloc(&idr, DUMMY_PTR, i - 2, i, GFP_KERNEL) == -ENOSPC);
+       assert(idr_alloc(&idr, DUMMY_PTR, i - 2, i + 10, GFP_KERNEL) == -ENOSPC);
 
        idr_for_each(&idr, item_idr_free, &idr);
        idr_destroy(&idr);