linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Liam Howlett <liam.howlett@oracle.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: "maple-tree@lists.infradead.org" <maple-tree@lists.infradead.org>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Yu Zhao <yuzhao@google.com>, Hugh Dickins <hughd@google.com>
Subject: Re: [PATCH v11 00/69] Introducing the Maple Tree
Date: Sun, 17 Jul 2022 13:01:42 +0000	[thread overview]
Message-ID: <20220717130134.njpljof5ebeofsx6@revolver> (raw)
In-Reply-To: <20220716212050.562604df2a48683dfbcc7e57@linux-foundation.org>

* Andrew Morton <akpm@linux-foundation.org> [220717 00:21]:
> On Sun, 17 Jul 2022 02:46:32 +0000 Liam Howlett <liam.howlett@oracle.com> wrote:
> 
> > This is the v10 + fixes and a few clean ups.
> 
> I'm seeing quite a lot of differences between this and what we had in
> mm-unstable.  A surprising amount.
> 
> Please check it all?

Sorry, I tried to make checkscript happy and some requested cleanups.

> 
> 
> --- include/linux/maple_tree.h	2022-07-16 21:05:04.697041964 -0700
> +++ ../25-pre-maple/include/linux/maple_tree.h	2022-07-16 21:05:34.509477799 -0700
> @@ -225,9 +225,9 @@
>   * @flags: The maple tree flags
>   *
>   */
> -#define MTREE_INIT(name, __flags) {					\
> -	.ma_lock = __SPIN_LOCK_UNLOCKED((name).ma_lock),		\
> -	.ma_flags = __flags,						\
> +#define MTREE_INIT(name, flags) {					\
> +	.ma_lock = __SPIN_LOCK_UNLOCKED(name.ma_lock),			\
> +	.ma_flags = flags,						\
>  	.ma_root = NULL,						\
>  }
>  
> @@ -238,13 +238,13 @@
>   * @lock: The external lock
>   */
>  #ifdef CONFIG_LOCKDEP
> -#define MTREE_INIT_EXT(name, __flags, __lock) {				\
> -	.ma_external_lock = &(__lock).dep_map,				\
> -	.ma_flags = (__flags),						\
> +#define MTREE_INIT_EXT(name, flags, lock) {				\
> +	.ma_external_lock = &(lock).dep_map,				\
> +	.ma_flags = flags,						\
>  	.ma_root = NULL,						\
>  }
>  #else
> -#define MTREE_INIT_EXT(name, __flags, __lock)	MTREE_INIT(name, __flags)
> +#define MTREE_INIT_EXT(name, flags, lock)	MTREE_INIT(name, flags)
>  #endif
>  
>  #define DEFINE_MTREE(name)						\
> @@ -520,8 +520,8 @@
>   * Note: may return the zero entry.
>   *
>   */
> -#define mas_for_each(__mas, __entry, __max) \
> -	while (((__entry) = mas_find((__mas), (__max))) != NULL)
> +#define mas_for_each(mas, entry, max) \
> +	while (((entry) = mas_find((mas), (max))) != NULL)
>  
>  
>  /**
> @@ -654,9 +654,9 @@
>   *
>   * Note: Will not return the zero entry.
>   */
> -#define mt_for_each(__tree, __entry, __index, __max) \
> -	for (__entry = mt_find(__tree, &(__index), __max); \
> -		__entry; __entry = mt_find_after(__tree, &(__index), __max))
> +#define mt_for_each(tree, entry, index, max) \
> +	for (entry = mt_find(tree, &(index), max); \
> +		entry; entry = mt_find_after(tree, &(index), max))
>  
>  
>  #ifdef CONFIG_DEBUG_MAPLE_TREE
> @@ -665,12 +665,12 @@
>  
>  void mt_dump(const struct maple_tree *mt);
>  void mt_validate(struct maple_tree *mt);
> -#define MT_BUG_ON(__tree, __x) do {					\
> +#define MT_BUG_ON(tree, x) do {						\
>  	atomic_inc(&maple_tree_tests_run);				\
> -	if (__x) {							\
> +	if (x) {							\
>  		pr_info("BUG at %s:%d (%u)\n",				\
> -		__func__, __LINE__, __x);				\
> -		mt_dump(__tree);					\
> +		__func__, __LINE__, x);					\
> +		mt_dump(tree);						\
>  		pr_info("Pass: %u Run:%u\n",				\
>  			atomic_read(&maple_tree_tests_passed),		\
>  			atomic_read(&maple_tree_tests_run));		\
> @@ -680,7 +680,7 @@
>  	}								\
>  } while (0)
>  #else
> -#define MT_BUG_ON(__tree, __x) BUG_ON(__x)
> +#define MT_BUG_ON(tree, x) BUG_ON(x)
>  #endif /* CONFIG_DEBUG_MAPLE_TREE */
>  
>  #endif /*_LINUX_MAPLE_TREE_H */
> --- include/linux/mm.h	2022-07-16 21:05:07.625084770 -0700
> +++ ../25-pre-maple/include/linux/mm.h	2022-07-16 21:05:37.847526599 -0700
> @@ -683,12 +683,11 @@
>  	return vmi->mas.index;
>  }
>  
> -#define for_each_vma(__vmi, __vma)					\
> -	while (((__vma) = vma_next(&(__vmi))) != NULL)
> +#define for_each_vma(vmi, vma)		while ((vma = vma_next(&(vmi))) != NULL)
>  
>  /* The MM code likes to work with exclusive end addresses */
> -#define for_each_vma_range(__vmi, __vma, __end)				\
> -	while (((__vma) = vma_find(&(__vmi), (__end) - 1)) != NULL)
> +#define for_each_vma_range(vmi, vma, end)				\
> +	while ((vma = vma_find(&(vmi), (end) - 1)) != NULL)
>  
>  #ifdef CONFIG_SHMEM
>  /*
> --- include/linux/mm_types.h	2022-07-16 21:05:07.625084770 -0700
> +++ ../25-pre-maple/include/linux/mm_types.h	2022-07-16 21:05:37.848526614 -0700
> @@ -681,11 +681,11 @@
>  	struct ma_state mas;
>  };
>  
> -#define VMA_ITERATOR(name, __mm, __addr)				\
> +#define VMA_ITERATOR(name, mm, addr) 					\
>  	struct vma_iterator name = {					\
>  		.mas = {						\
> -			.tree = &(__mm)->mm_mt,				\
> -			.index = __addr,				\
> +			.tree = &mm->mm_mt,				\
> +			.index = addr,					\
>  			.node = MAS_START,				\
>  		},							\
>  	}
> 
> 
> 

All of the above changes are attempting to avoid issues with define
using variable names that may be used and potential dereferencing
issues.

> 
> --- mm/memory.c	2022-07-16 21:05:07.627084799 -0700
> +++ ../25-pre-maple/mm/memory.c	2022-07-16 21:05:37.980528543 -0700
> @@ -1699,6 +1699,7 @@
>  /**
>   * unmap_vmas - unmap a range of memory covered by a list of vma's
>   * @tlb: address of the caller's struct mmu_gather
> + * @mt: The maple tree pointer for the VMAs
>   * @vma: the starting vma
>   * @start_addr: virtual address at which to start unmapping
>   * @end_addr: virtual address at which to end unmapping
> --- mm/mmap.c	2022-07-16 21:05:07.716086100 -0700
> +++ ../25-pre-maple/mm/mmap.c	2022-07-16 21:05:38.104530356 -0700
> @@ -341,27 +341,28 @@
>  	MA_STATE(mas, mt, 0, 0);
>  
>  	mt_validate(&mm->mm_mt);
> +
>  	mas_for_each(&mas, vma_mt, ULONG_MAX) {
>  		if ((vma_mt->vm_start != mas.index) ||
>  		    (vma_mt->vm_end - 1 != mas.last)) {
>  			pr_emerg("issue in %s\n", current->comm);
>  			dump_stack();
>  			dump_vma(vma_mt);
> -			pr_emerg("mt piv: %p %lu - %lu\n", vma_mt,
> +			pr_emerg("mt piv: %px %lu - %lu\n", vma_mt,
>  				 mas.index, mas.last);
> -			pr_emerg("mt vma: %p %lu - %lu\n", vma_mt,
> +			pr_emerg("mt vma: %px %lu - %lu\n", vma_mt,
>  				 vma_mt->vm_start, vma_mt->vm_end);
>  
>  			mt_dump(mas.tree);
>  			if (vma_mt->vm_end != mas.last + 1) {
> -				pr_err("vma: %p vma_mt %lu-%lu\tmt %lu-%lu\n",
> +				pr_err("vma: %px vma_mt %lu-%lu\tmt %lu-%lu\n",
>  						mm, vma_mt->vm_start, vma_mt->vm_end,
>  						mas.index, mas.last);
>  				mt_dump(mas.tree);
>  			}
>  			VM_BUG_ON_MM(vma_mt->vm_end != mas.last + 1, mm);
>  			if (vma_mt->vm_start != mas.index) {
> -				pr_err("vma: %p vma_mt %p %lu - %lu doesn't match\n",
> +				pr_err("vma: %px vma_mt %px %lu - %lu doesn't match\n",
>  						mm, vma_mt, vma_mt->vm_start, vma_mt->vm_end);
>  				mt_dump(mas.tree);
>  			}

I removed px here to avoid leaking pointers - although this is in debug,
so maybe it's not that critical.

> @@ -448,7 +449,7 @@
>  		unsigned long vm_start = max(addr, vma->vm_start);
>  		unsigned long vm_end = min(end, vma->vm_end);
>  
> -		nr_pages += PHYS_PFN(vm_end - vm_start);
> +		nr_pages += (vm_end - vm_start) / PAGE_SIZE;
>  	}

This was suggested by David, I should have sent it out as a patch before
v11.

>  
>  	return nr_pages;
> @@ -710,11 +711,11 @@
>  				 * remove_next == 1 is case 1 or 7.
>  				 */
>  				remove_next = 1 + (end > next->vm_end);
> -				if (remove_next == 2)
> -					next_next = find_vma(mm, next->vm_end);
> -
> +				next_next = find_vma(mm, next->vm_end);
>  				VM_WARN_ON(remove_next == 2 &&
>  					   end != next_next->vm_end);
> +				/* trim end to next, for case 6 first pass */
> +				end = next->vm_end;
>  			}
>  
>  			exporter = next;
> @@ -725,7 +726,7 @@
>  			 * next, if the vma overlaps with it.
>  			 */
>  			if (remove_next == 2 && !next->anon_vma)
> -				exporter = next_next;
> +				exporter = find_vma(mm, next->vm_end);
>  
>  		} else if (end > next->vm_start) {
>  			/*
> @@ -762,6 +763,7 @@
>  				return error;
>  		}
>  	}
> +again:
>  	vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
>  
>  	if (mas_preallocate(&mas, vma, GFP_KERNEL)) {
> @@ -852,8 +854,6 @@
>  
>  	if (remove_next && file) {
>  		__remove_shared_vm_struct(next, file, mapping);
> -		if (remove_next == 2)
> -			__remove_shared_vm_struct(next_next, file, mapping);
>  	} else if (insert) {
>  		/*
>  		 * split_vma has split insert from vma, and needs
> @@ -881,7 +881,6 @@
>  	}
>  
>  	if (remove_next) {
> -again:
>  		if (file) {
>  			uprobe_munmap(next, next->vm_start, next->vm_end);
>  			fput(file);
> @@ -890,22 +889,45 @@
>  			anon_vma_merge(vma, next);
>  		mm->map_count--;
>  		mpol_put(vma_policy(next));
> -		if (remove_next != 2)
> -			BUG_ON(vma->vm_end < next->vm_end);
> +		BUG_ON(vma->vm_end < next->vm_end);
>  		vm_area_free(next);
>  
>  		/*
>  		 * In mprotect's case 6 (see comments on vma_merge),
> -		 * we must remove next_next too.
> +		 * we must remove another next too. It would clutter
> +		 * up the code too much to do both in one go.
>  		 */
> +		if (remove_next != 3) {
> +			/*
> +			 * If "next" was removed and vma->vm_end was
> +			 * expanded (up) over it, in turn
> +			 * "next->prev->vm_end" changed and the
> +			 * "vma->next" gap must be updated.
> +			 */
> +			next = next_next;
> +		} else {
> +			/*
> +			 * For the scope of the comment "next" and
> +			 * "vma" considered pre-swap(): if "vma" was
> +			 * removed, next->vm_start was expanded (down)
> +			 * over it and the "next" gap must be updated.
> +			 * Because of the swap() the post-swap() "vma"
> +			 * actually points to pre-swap() "next"
> +			 * (post-swap() "next" as opposed is now a
> +			 * dangling pointer).
> +			 */
> +			next = vma;
> +		}
>  		if (remove_next == 2) {
> +			mas_reset(&mas);
>  			remove_next = 1;
> -			next = next_next;
> +			end = next->vm_end;
>  			goto again;
>  		}
>  	}
> -	if (insert && file)
> +	if (insert && file) {
>  		uprobe_mmap(insert);
> +	}
>  
>  	mas_destroy(&mas);
>  	validate_mm(mm);
> @@ -1613,8 +1635,8 @@
>  	return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
>  }

This is fallout from the syzbot bug from the patch I sent Hugh.  This is
the expected difference that had to change a few patches in the series
as it went through.  I should say that it's slightly different than
Hugh's copy.  This copy searches for the required VMA only when needed.
I actually really like how this turned out since it was able to simplify
__vma_adjust().

>  
> -/**
> - * unmapped_area() - Find an area between the low_limit and the high_limit with
> +/*
> + * unmapped_area() Find an area between the low_limit and the high_limit with
>   * the correct alignment and offset, all from @info. Note: current->mm is used
>   * for the search.
>   *
> @@ -1640,15 +1662,12 @@
>  
>  	gap = mas.index;
>  	gap += (info->align_offset - gap) & info->align_mask;
> -	VM_BUG_ON(gap + info->length > info->high_limit);
> -	VM_BUG_ON(gap + info->length > mas.last);
>  	return gap;
>  }
>  
> -/**
> - * unmapped_area_topdown() - Find an area between the low_limit and the
> +/* unmapped_area_topdown() Find an area between the low_limit and the
>   * high_limit with * the correct alignment and offset at the highest available
> - * address, all from @info. Note: current->mm is used for the search.
> + * address, all from * @info. Note: current->mm is used for the search.
>   *
>   * @info: The unmapped area information including the range (low_limit -
>   * hight_limit), the alignment offset and mask.
> @@ -1671,8 +1690,6 @@
>  
>  	gap = mas.last + 1 - info->length;
>  	gap -= (gap - info->align_offset) & info->align_mask;
> -	VM_BUG_ON(gap < info->low_limit);
> -	VM_BUG_ON(gap < mas.index);
>  	return gap;
>  }

These were added in an attempt to restore the previous VM_BUG_ON(). I
must have errors in them.  These should be dropped until better tested.

>  
> @@ -1884,12 +1901,12 @@
>  EXPORT_SYMBOL(find_vma_intersection);
>  
>  /**
> - * find_vma() - Find the VMA for a given address, or the next VMA.
> + * find_vma() - Find the VMA for a given address, or the next vma.
>   * @mm: The mm_struct to check
>   * @addr: The address
>   *
> - * Returns: The VMA associated with addr, or the next VMA.
> - * May return %NULL in the case of no VMA at addr or above.
> + * Returns: The VMA associated with addr, or the next vma.
> + * May return %NULL in the case of no vma at addr or above.
>   */
>  struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
>  {
> @@ -2642,7 +2659,7 @@
>  	    (vma ? can_vma_merge_after(prev, vm_flags, vma->anon_vma, file,
>  				       pgoff, vma->vm_userfaultfd_ctx, NULL) :
>  		   can_vma_merge_after(prev, vm_flags, NULL, file, pgoff,
> -				       NULL_VM_UFFD_CTX, NULL))) {
> +				       NULL_VM_UFFD_CTX , NULL))) {
>  		merge_start = prev->vm_start;
>  		vma = prev;
>  		vm_pgoff = prev->vm_pgoff;
> @@ -3036,7 +3053,6 @@
>  		unsigned long addr, unsigned long len, unsigned long flags)
>  {
>  	struct mm_struct *mm = current->mm;
> -
>  	validate_mm_mt(mm);
>  
>  	/*
> @@ -3092,7 +3108,7 @@
>  	vma->vm_flags = flags;
>  	vma->vm_page_prot = vm_get_page_prot(flags);
>  	mas_set_range(mas, vma->vm_start, addr + len - 1);
> -	if (mas_store_gfp(mas, vma, GFP_KERNEL))
> +	if ( mas_store_gfp(mas, vma, GFP_KERNEL))
>  		goto mas_store_fail;
>  
>  	mm->map_count++;
> @@ -3155,7 +3171,7 @@
>  	vma = mas_prev(&mas, 0);
>  	if (!vma || vma->vm_end != addr || vma_policy(vma) ||
>  	    !can_vma_merge_after(vma, flags, NULL, NULL,
> -				 addr >> PAGE_SHIFT, NULL_VM_UFFD_CTX, NULL))
> +				 addr >> PAGE_SHIFT,NULL_VM_UFFD_CTX, NULL))
>  		vma = NULL;
>  
>  	ret = do_brk_flags(&mas, vma, addr, len, flags);


These are all cosmetic fixes for checkscript.  I now regret making these
changes as I increased confusion for very little gain - plus the second
from the last is incorrect.

I should have prioritized stability over cleaner code this late in the
cycle.  Let me know if you'd like me to respin with just the addition of
the one fix sent to Hugh.


Thanks,
Liam

      parent reply	other threads:[~2022-07-17 13:01 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-17  2:46 [PATCH v11 00/69] Introducing the Maple Tree Liam Howlett
2022-07-17  2:46 ` [PATCH v11 02/69] radix tree test suite: add pr_err define Liam Howlett
2022-07-17  2:46 ` [PATCH v11 01/69] Maple Tree: add new data structure Liam Howlett
2022-07-17  2:46 ` [PATCH v11 03/69] radix tree test suite: add kmem_cache_set_non_kernel() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 04/69] radix tree test suite: add allocation counts and size to kmem_cache Liam Howlett
2022-07-17  2:46 ` [PATCH v11 05/69] radix tree test suite: add support for slab bulk APIs Liam Howlett
2022-07-17  2:46 ` [PATCH v11 06/69] radix tree test suite: add lockdep_is_held to header Liam Howlett
2022-07-17  2:46 ` [PATCH v11 07/69] lib/test_maple_tree: add testing for maple tree Liam Howlett
2022-07-17  2:46 ` [PATCH v11 10/69] mmap: use the VMA iterator in count_vma_pages_range() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 09/69] mm: add VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 08/69] mm: start tracking VMAs with maple tree Liam Howlett
2022-07-17  2:46 ` [PATCH v11 11/69] mm/mmap: use the maple tree in find_vma() instead of the rbtree Liam Howlett
2022-07-17  2:46 ` [PATCH v11 12/69] mm/mmap: use the maple tree for find_vma_prev() " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 13/69] mm/mmap: use maple tree for unmapped_area{_topdown} Liam Howlett
2022-07-17  2:46 ` [PATCH v11 16/69] proc: remove VMA rbtree use from nommu Liam Howlett
2022-07-17  2:46 ` [PATCH v11 15/69] damon: convert __damon_va_three_regions to use the VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 14/69] kernel/fork: use maple tree for dup_mmap() during forking Liam Howlett
2022-07-17  2:46 ` [PATCH v11 18/69] mmap: change zeroing of maple tree in __vma_adjust() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 17/69] mm: remove rb tree Liam Howlett
2022-07-17  2:46 ` [PATCH v11 19/69] xen: use vma_lookup() in privcmd_ioctl_mmap() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 20/69] mm: optimize find_exact_vma() to use vma_lookup() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 22/69] mm/mmap: change do_brk_flags() to expand existing VMA and add do_brk_munmap() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 21/69] mm/khugepaged: optimize collapse_pte_mapped_thp() by using vma_lookup() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 23/69] mm: use maple tree operations for find_vma_intersection() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 24/69] mm/mmap: use advanced maple tree API for mmap_region() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 25/69] mm: remove vmacache Liam Howlett
2022-07-17  2:46 ` [PATCH v11 26/69] mm: convert vma_lookup() to use mtree_load() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 27/69] mm/mmap: move mmap_region() below do_munmap() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 29/69] mm/mmap: change do_brk_munmap() to use do_mas_align_munmap() Liam Howlett
2022-07-17  2:46 ` [PATCH v11 28/69] mm/mmap: reorganize munmap to use maple states Liam Howlett
2022-07-17  2:46 ` [PATCH v11 30/69] arm64: remove mmap linked list from vdso Liam Howlett
2022-07-17  2:46 ` [PATCH v11 31/69] arm64: Change elfcore for_each_mte_vma() to use VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 32/69] parisc: remove mmap linked list from cache handling Liam Howlett
2022-07-17  2:46 ` [PATCH v11 34/69] s390: remove vma linked list walks Liam Howlett
2022-07-17  2:46 ` [PATCH v11 33/69] powerpc: remove mmap " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 36/69] xtensa: remove vma " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 37/69] cxl: remove vma linked list walk Liam Howlett
2022-07-17  2:46 ` [PATCH v11 35/69] x86: remove vma linked list walks Liam Howlett
2022-07-17  2:46 ` [PATCH v11 39/69] um: remove vma linked list walk Liam Howlett
2022-07-17  2:46 ` [PATCH v11 38/69] optee: " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 41/69] exec: use VMA iterator instead of linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 40/69] coredump: remove vma linked list walk Liam Howlett
2022-07-17  2:46 ` [PATCH v11 44/69] userfaultfd: use maple tree iterator to iterate VMAs Liam Howlett
2022-07-17  2:46 ` [PATCH v11 42/69] fs/proc/base: use maple tree iterators in place of linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 43/69] fs/proc/task_mmu: stop using linked list and highest_vm_end Liam Howlett
2022-07-17  2:46 ` [PATCH v11 46/69] acct: use VMA iterator instead of linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 47/69] perf: use VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 45/69] ipc/shm: use VMA iterator instead of linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 49/69] fork: use VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 48/69] sched: use maple tree iterator to walk VMAs Liam Howlett
2022-07-17  2:46 ` [PATCH v11 50/69] bpf: remove VMA linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 54/69] mm/madvise: use vma_find() instead of vma " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 53/69] mm/ksm: use vma iterators " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 51/69] mm/gup: use maple tree navigation instead of " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 52/69] mm/khugepaged: stop using vma " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 57/69] mm/mlock: use vma iterator and maple state instead of " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 55/69] mm/memcontrol: stop using mm->highest_vm_end Liam Howlett
2022-07-17  2:46 ` [PATCH v11 56/69] mm/mempolicy: use vma iterator & maple state instead of vma linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 59/69] mm/mremap: use vma_find_intersection() " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 60/69] mm/msync: use vma_find() " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 58/69] mm/mprotect: use maple tree navigation " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 63/69] mm/swapfile: use vma iterator " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 62/69] mm/pagewalk: use vma_find() " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 61/69] mm/oom_kill: use maple tree iterators " Liam Howlett
2022-07-17  2:46 ` [PATCH v11 64/69] i915: use the VMA iterator Liam Howlett
2022-07-17  2:46 ` [PATCH v11 67/69] mm: remove the vma linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 66/69] riscv: use vma iterator for vdso Liam Howlett
2022-07-17  2:46 ` [PATCH v11 65/69] nommu: remove uses of VMA linked list Liam Howlett
2022-07-17  2:46 ` [PATCH v11 68/69] mm/mmap: drop range_has_overlap() function Liam Howlett
2022-07-17  2:46 ` [PATCH v11 69/69] mm/mmap.c: pass in mapping to __vma_link_file() Liam Howlett
2022-07-17  4:20 ` [PATCH v11 00/69] Introducing the Maple Tree Andrew Morton
2022-07-17  5:57   ` Yu Zhao
2022-07-17 12:42     ` Liam Howlett
2022-07-17 13:06       ` Liam Howlett
2022-07-17 18:55       ` Yu Zhao
2022-07-17 13:01   ` Liam Howlett [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220717130134.njpljof5ebeofsx6@revolver \
    --to=liam.howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=hughd@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=maple-tree@lists.infradead.org \
    --cc=yuzhao@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).