diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2019-11-02 00:25:08 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2019-11-03 06:36:50 -0500 |
commit | b7e9728f3d7fc5c5c8508d99f1675212af5cfd49 (patch) | |
tree | 15be71399abd81c6661f5cac4c79b79ec3fdf07e /lib | |
parent | f6341c5af4e6e15041be39976d16deca789555fa (diff) | |
download | linux-stable-b7e9728f3d7fc5c5c8508d99f1675212af5cfd49.tar.gz linux-stable-b7e9728f3d7fc5c5c8508d99f1675212af5cfd49.tar.bz2 linux-stable-b7e9728f3d7fc5c5c8508d99f1675212af5cfd49.zip |
idr: Fix idr_alloc_u32 on 32-bit systems
Attempting to allocate an entry at 0xffffffff when one is already
present would succeed in allocating one at 2^32, which would confuse
everything. Return -ENOSPC in this case, as expected.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/radix-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radix-tree.c b/lib/radix-tree.c index 18c1dfbb1765..c8fa1d274530 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c @@ -1529,7 +1529,7 @@ void __rcu **idr_get_free(struct radix_tree_root *root, offset = radix_tree_find_next_bit(node, IDR_FREE, offset + 1); start = next_index(start, node, offset); - if (start > max) + if (start > max || start == 0) return ERR_PTR(-ENOSPC); while (offset == RADIX_TREE_MAP_SIZE) { offset = node->offset + 1; |