From 5faf647d70d30895a8e4cebde706d32b639d1190 Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Tue, 31 Aug 2021 10:51:09 -0400 Subject: [PATCH] maple_tree: Fix David Hildenbrand Signed-off-by: Liam R. Howlett --- include/linux/mm_types.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 428a697db7de..740715d5dad9 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -412,11 +412,6 @@ struct vm_area_struct { pgprot_t vm_page_prot; unsigned long vm_flags; /* Flags, see mm.h. */ - /* Information about our backing store: */ - unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE - * units - */ - struct file *vm_file; /* File we map to (can be NULL). */ /* * For areas with an address space and backing store, * linkage into the address_space->i_mmap interval tree. @@ -438,7 +433,11 @@ struct vm_area_struct { /* Function pointers to deal with this struct. */ const struct vm_operations_struct *vm_ops; - + /* Information about our backing store: */ + unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE + * units + */ + struct file *vm_file; /* File we map to (can be NULL). */ void * vm_private_data; /* was vm_pte (shared mem) */ -- 2.50.1