mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
maple_tree: should get pivots boundary by type
[ Upstream commitab6ef70a8b] We should get pivots boundary by type. Fixes a potential overindexing of mt_pivots[]. Link: https://lkml.kernel.org/r/20221112234308.23823-1-richard.weiyang@gmail.com Fixes:54a611b605("Maple Tree: add new data structure") Signed-off-by: Wei Yang <richard.weiyang@gmail.com> Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
29e774dcb2
commit
e0514483fa
@@ -665,12 +665,13 @@ static inline unsigned long mte_pivot(const struct maple_enode *mn,
|
||||
unsigned char piv)
|
||||
{
|
||||
struct maple_node *node = mte_to_node(mn);
|
||||
enum maple_type type = mte_node_type(mn);
|
||||
|
||||
if (piv >= mt_pivots[piv]) {
|
||||
if (piv >= mt_pivots[type]) {
|
||||
WARN_ON(1);
|
||||
return 0;
|
||||
}
|
||||
switch (mte_node_type(mn)) {
|
||||
switch (type) {
|
||||
case maple_arange_64:
|
||||
return node->ma64.pivot[piv];
|
||||
case maple_range_64:
|
||||
|
||||
Reference in New Issue
Block a user