]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
maple_tree: should get pivots boundary by type
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Sat, 12 Nov 2022 23:43:08 +0000 (23:43 +0000)
committerLiam R. Howlett <Liam.Howlett@oracle.com>
Mon, 28 Nov 2022 20:11:45 +0000 (15:11 -0500)
We should get pivots boundary by type.

Fixes: 54a611b60590 (Maple Tree: add new data structure)
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
lib/maple_tree.c

index df352f6ccc240979f2fb03b9f096e4afc579a8cc..721c684e5d39df161360dd7f3208e2da3c3b5d89 100644 (file)
@@ -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: