mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[PATCH] radixtree: normalize radix_tree_tag_get() return value
In radix_tree_tag_get(), return normalized value of 0/1, as indicated by its comment. Signed-off-by: Wu Fengguang <wfg@mail.ustc.edu.cn> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
3419b23a91
commit
e5dcd90b53
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ int radix_tree_tag_get(struct radix_tree_root *root,
|
||||||
int ret = tag_get(slot, tag, offset);
|
int ret = tag_get(slot, tag, offset);
|
||||||
|
|
||||||
BUG_ON(ret && saw_unset_tag);
|
BUG_ON(ret && saw_unset_tag);
|
||||||
return ret;
|
return !!ret;
|
||||||
}
|
}
|
||||||
slot = slot->slots[offset];
|
slot = slot->slots[offset];
|
||||||
shift -= RADIX_TREE_MAP_SHIFT;
|
shift -= RADIX_TREE_MAP_SHIFT;
|
||||||
|
|
Loading…
Reference in a new issue