|
@@ -526,8 +526,8 @@ int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
|
|
|
|
|
|
|
|
#ifdef CONFIG_RADIX_TREE_MULTIORDER
|
|
#ifdef CONFIG_RADIX_TREE_MULTIORDER
|
|
|
/* Insert pointers to the canonical entry */
|
|
/* Insert pointers to the canonical entry */
|
|
|
- if ((shift - order) > 0) {
|
|
|
|
|
- int i, n = 1 << (shift - order);
|
|
|
|
|
|
|
+ if (order > shift) {
|
|
|
|
|
+ int i, n = 1 << (order - shift);
|
|
|
offset = offset & ~(n - 1);
|
|
offset = offset & ~(n - 1);
|
|
|
slot = ptr_to_indirect(&node->slots[offset]);
|
|
slot = ptr_to_indirect(&node->slots[offset]);
|
|
|
for (i = 0; i < n; i++) {
|
|
for (i = 0; i < n; i++) {
|