maple_tree: remove the parameter entry of mas_preallocate
The parameter entry of mas_preallocate is not used, so drop it. Link: https://lkml.kernel.org/r/20230110154211.1758562-1-vernon2gm@gmail.com Signed-off-by: Vernon Yang <vernon2gm@gmail.com> Cc: Liam Howlett <liam.howlett@oracle.com> Cc: Matthew Wilcox <willy@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
75cb348714
commit
c5d5546ea0
@ -455,7 +455,7 @@ int mas_store_gfp(struct ma_state *mas, void *entry, gfp_t gfp);
|
|||||||
void mas_store_prealloc(struct ma_state *mas, void *entry);
|
void mas_store_prealloc(struct ma_state *mas, void *entry);
|
||||||
void *mas_find(struct ma_state *mas, unsigned long max);
|
void *mas_find(struct ma_state *mas, unsigned long max);
|
||||||
void *mas_find_rev(struct ma_state *mas, unsigned long min);
|
void *mas_find_rev(struct ma_state *mas, unsigned long min);
|
||||||
int mas_preallocate(struct ma_state *mas, void *entry, gfp_t gfp);
|
int mas_preallocate(struct ma_state *mas, gfp_t gfp);
|
||||||
bool mas_is_err(struct ma_state *mas);
|
bool mas_is_err(struct ma_state *mas);
|
||||||
|
|
||||||
bool mas_nomem(struct ma_state *mas, gfp_t gfp);
|
bool mas_nomem(struct ma_state *mas, gfp_t gfp);
|
||||||
|
@ -5700,12 +5700,11 @@ EXPORT_SYMBOL_GPL(mas_store_prealloc);
|
|||||||
/**
|
/**
|
||||||
* mas_preallocate() - Preallocate enough nodes for a store operation
|
* mas_preallocate() - Preallocate enough nodes for a store operation
|
||||||
* @mas: The maple state
|
* @mas: The maple state
|
||||||
* @entry: The entry that will be stored
|
|
||||||
* @gfp: The GFP_FLAGS to use for allocations.
|
* @gfp: The GFP_FLAGS to use for allocations.
|
||||||
*
|
*
|
||||||
* Return: 0 on success, -ENOMEM if memory could not be allocated.
|
* Return: 0 on success, -ENOMEM if memory could not be allocated.
|
||||||
*/
|
*/
|
||||||
int mas_preallocate(struct ma_state *mas, void *entry, gfp_t gfp)
|
int mas_preallocate(struct ma_state *mas, gfp_t gfp)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
16
mm/mmap.c
16
mm/mmap.c
@ -472,7 +472,7 @@ static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma)
|
|||||||
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
||||||
struct address_space *mapping = NULL;
|
struct address_space *mapping = NULL;
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
if (mas_preallocate(&mas, GFP_KERNEL))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
if (vma->vm_file) {
|
if (vma->vm_file) {
|
||||||
@ -538,7 +538,7 @@ inline int vma_expand(struct ma_state *mas, struct vm_area_struct *vma,
|
|||||||
/* Only handles expanding */
|
/* Only handles expanding */
|
||||||
VM_BUG_ON(vma->vm_start < start || vma->vm_end > end);
|
VM_BUG_ON(vma->vm_start < start || vma->vm_end > end);
|
||||||
|
|
||||||
if (mas_preallocate(mas, vma, GFP_KERNEL))
|
if (mas_preallocate(mas, GFP_KERNEL))
|
||||||
goto nomem;
|
goto nomem;
|
||||||
|
|
||||||
vma_adjust_trans_huge(vma, start, end, 0);
|
vma_adjust_trans_huge(vma, start, end, 0);
|
||||||
@ -712,7 +712,7 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
if (mas_preallocate(&mas, GFP_KERNEL))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
|
vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
|
||||||
@ -1938,7 +1938,7 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
|
|||||||
/* Check that both stack segments have the same anon_vma? */
|
/* Check that both stack segments have the same anon_vma? */
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
if (mas_preallocate(&mas, GFP_KERNEL))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
/* We must make sure the anon_vma is allocated. */
|
/* We must make sure the anon_vma is allocated. */
|
||||||
@ -2019,7 +2019,7 @@ int expand_downwards(struct vm_area_struct *vma, unsigned long address)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
if (mas_preallocate(&mas, GFP_KERNEL))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
/* We must make sure the anon_vma is allocated. */
|
/* We must make sure the anon_vma is allocated. */
|
||||||
@ -2311,7 +2311,7 @@ do_mas_align_munmap(struct ma_state *mas, struct vm_area_struct *vma,
|
|||||||
mt_init_flags(&mt_detach, MT_FLAGS_LOCK_EXTERN);
|
mt_init_flags(&mt_detach, MT_FLAGS_LOCK_EXTERN);
|
||||||
mt_set_external_lock(&mt_detach, &mm->mmap_lock);
|
mt_set_external_lock(&mt_detach, &mm->mmap_lock);
|
||||||
|
|
||||||
if (mas_preallocate(mas, vma, GFP_KERNEL))
|
if (mas_preallocate(mas, GFP_KERNEL))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
mas->last = end - 1;
|
mas->last = end - 1;
|
||||||
@ -2680,7 +2680,7 @@ cannot_expand:
|
|||||||
goto free_vma;
|
goto free_vma;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL)) {
|
if (mas_preallocate(&mas, GFP_KERNEL)) {
|
||||||
error = -ENOMEM;
|
error = -ENOMEM;
|
||||||
if (file)
|
if (file)
|
||||||
goto close_and_free_vma;
|
goto close_and_free_vma;
|
||||||
@ -2953,7 +2953,7 @@ static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *vma,
|
|||||||
can_vma_merge_after(vma, flags, NULL, NULL,
|
can_vma_merge_after(vma, flags, NULL, NULL,
|
||||||
addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL)) {
|
addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL)) {
|
||||||
mas_set_range(mas, vma->vm_start, addr + len - 1);
|
mas_set_range(mas, vma->vm_start, addr + len - 1);
|
||||||
if (mas_preallocate(mas, vma, GFP_KERNEL))
|
if (mas_preallocate(mas, GFP_KERNEL))
|
||||||
goto unacct_fail;
|
goto unacct_fail;
|
||||||
|
|
||||||
vma_adjust_trans_huge(vma, vma->vm_start, addr + len, 0);
|
vma_adjust_trans_huge(vma, vma->vm_start, addr + len, 0);
|
||||||
|
@ -602,7 +602,7 @@ static int add_vma_to_mm(struct mm_struct *mm, struct vm_area_struct *vma)
|
|||||||
{
|
{
|
||||||
MA_STATE(mas, &mm->mm_mt, vma->vm_start, vma->vm_end);
|
MA_STATE(mas, &mm->mm_mt, vma->vm_start, vma->vm_end);
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL)) {
|
if (mas_preallocate(&mas, GFP_KERNEL)) {
|
||||||
pr_warn("Allocation of vma tree for process %d failed\n",
|
pr_warn("Allocation of vma tree for process %d failed\n",
|
||||||
current->pid);
|
current->pid);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
@ -633,7 +633,7 @@ static int delete_vma_from_mm(struct vm_area_struct *vma)
|
|||||||
{
|
{
|
||||||
MA_STATE(mas, &vma->vm_mm->mm_mt, 0, 0);
|
MA_STATE(mas, &vma->vm_mm->mm_mt, 0, 0);
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL)) {
|
if (mas_preallocate(&mas, GFP_KERNEL)) {
|
||||||
pr_warn("Allocation of vma tree for process %d failed\n",
|
pr_warn("Allocation of vma tree for process %d failed\n",
|
||||||
current->pid);
|
current->pid);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
@ -1091,7 +1091,7 @@ unsigned long do_mmap(struct file *file,
|
|||||||
if (!vma)
|
if (!vma)
|
||||||
goto error_getting_vma;
|
goto error_getting_vma;
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
if (mas_preallocate(&mas, GFP_KERNEL))
|
||||||
goto error_maple_preallocate;
|
goto error_maple_preallocate;
|
||||||
|
|
||||||
region->vm_usage = 1;
|
region->vm_usage = 1;
|
||||||
@ -1369,7 +1369,7 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
|
|||||||
if (!new)
|
if (!new)
|
||||||
goto err_vma_dup;
|
goto err_vma_dup;
|
||||||
|
|
||||||
if (mas_preallocate(&mas, vma, GFP_KERNEL)) {
|
if (mas_preallocate(&mas, GFP_KERNEL)) {
|
||||||
pr_warn("Allocation of vma tree for process %d failed\n",
|
pr_warn("Allocation of vma tree for process %d failed\n",
|
||||||
current->pid);
|
current->pid);
|
||||||
goto err_mas_preallocate;
|
goto err_mas_preallocate;
|
||||||
|
@ -35342,7 +35342,7 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
for (i = 0; i <= max; i++)
|
for (i = 0; i <= max; i++)
|
||||||
mtree_test_store_range(mt, i * 10, i * 10 + 5, &i);
|
mtree_test_store_range(mt, i * 10, i * 10 + 5, &i);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35351,18 +35351,18 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
mas_destroy(&mas);
|
mas_destroy(&mas);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
|
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35370,25 +35370,25 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
mn = mas_pop_node(&mas);
|
mn = mas_pop_node(&mas);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
||||||
ma_free_rcu(mn);
|
ma_free_rcu(mn);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
mas_destroy(&mas);
|
mas_destroy(&mas);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
||||||
mn = mas_pop_node(&mas);
|
mn = mas_pop_node(&mas);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
mas_destroy(&mas);
|
mas_destroy(&mas);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
ma_free_rcu(mn);
|
ma_free_rcu(mn);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35397,12 +35397,12 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
MT_BUG_ON(mt, mas_allocated(&mas) != allocated - 1);
|
||||||
mas_push_node(&mas, mn);
|
mas_push_node(&mas, mn);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != allocated);
|
MT_BUG_ON(mt, mas_allocated(&mas) != allocated);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
mas_destroy(&mas);
|
mas_destroy(&mas);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35410,21 +35410,21 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
mas_store_prealloc(&mas, ptr);
|
mas_store_prealloc(&mas, ptr);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
||||||
mas_store_prealloc(&mas, ptr);
|
mas_store_prealloc(&mas, ptr);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
MT_BUG_ON(mt, allocated != 1 + height * 3);
|
||||||
mas_store_prealloc(&mas, ptr);
|
mas_store_prealloc(&mas, ptr);
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35432,14 +35432,14 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
mas_store_prealloc(&mas, ptr);
|
mas_store_prealloc(&mas, ptr);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
||||||
mt_set_non_kernel(1);
|
mt_set_non_kernel(1);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL & GFP_NOWAIT) == 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL & GFP_NOWAIT) == 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
mas_destroy(&mas);
|
mas_destroy(&mas);
|
||||||
|
|
||||||
|
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL) != 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL) != 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated == 0);
|
MT_BUG_ON(mt, allocated == 0);
|
||||||
@ -35447,7 +35447,7 @@ static noinline void check_prealloc(struct maple_tree *mt)
|
|||||||
mas_store_prealloc(&mas, ptr);
|
mas_store_prealloc(&mas, ptr);
|
||||||
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
MT_BUG_ON(mt, mas_allocated(&mas) != 0);
|
||||||
mt_set_non_kernel(1);
|
mt_set_non_kernel(1);
|
||||||
MT_BUG_ON(mt, mas_preallocate(&mas, ptr, GFP_KERNEL & GFP_NOWAIT) == 0);
|
MT_BUG_ON(mt, mas_preallocate(&mas, GFP_KERNEL & GFP_NOWAIT) == 0);
|
||||||
allocated = mas_allocated(&mas);
|
allocated = mas_allocated(&mas);
|
||||||
height = mas_mt_height(&mas);
|
height = mas_mt_height(&mas);
|
||||||
MT_BUG_ON(mt, allocated != 0);
|
MT_BUG_ON(mt, allocated != 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user