summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLiam R. Howlett <Liam.Howlett@Oracle.com>2020-07-24 15:06:25 -0400
committerLiam R. Howlett <Liam.Howlett@Oracle.com>2020-07-25 21:07:09 -0400
commitd1c33367447884830b4087a429a814c2d09d88dd (patch)
tree366d2ead2c052acf17656fd416fd0d5c559b787a /include
parent7fd58758bd618605182f7b22ff9942a947539a1c (diff)
mm/mmap and friends: Remove rb tree.howlett/maple/20200727
Remove the RB tree and start using the maple tree for vm_area_struct tracking. Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mm_types.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 90021d0c0530..104d45ba921d 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -386,7 +386,6 @@ struct mm_struct {
struct {
struct vm_area_struct *mmap; /* list of VMAs */
struct maple_tree mm_mt;
- struct rb_root mm_rb;
u64 vmacache_seqnum; /* per-thread vmacache */
#ifdef CONFIG_MMU
unsigned long (*get_unmapped_area) (struct file *filp,