]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
maple_tree: Fix David Hildenbrand
authorLiam R. Howlett <Liam.Howlett@oracle.com>
Tue, 31 Aug 2021 14:51:09 +0000 (10:51 -0400)
committerLiam R. Howlett <Liam.Howlett@oracle.com>
Thu, 2 Sep 2021 15:26:37 +0000 (11:26 -0400)
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
include/linux/mm_types.h

index 428a697db7de52eea3a9e4644fc3d47a40c5d578..740715d5dad9d3b1d632815ed158ad331f46e7f5 100644 (file)
@@ -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) */