]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm-vmalloc-convert-vread-to-vread_iter-v8-fix
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 23 Mar 2023 22:28:43 +0000 (15:28 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 5 Apr 2023 23:02:39 +0000 (16:02 -0700)
Cc: Lorenzo Stoakes <lstoakes@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/vmalloc.h
mm/vmalloc.c

index 80a924023696087f3352345757acaa3c3d26b3c6..c720be70c8ddde9cc947c685e64923139c66c3f9 100644 (file)
@@ -9,12 +9,12 @@
 #include <asm/page.h>          /* pgprot_t */
 #include <linux/rbtree.h>
 #include <linux/overflow.h>
-#include <linux/uio.h>
 
 #include <asm/vmalloc.h>
 
 struct vm_area_struct;         /* vma defining user mapping in mm_types.h */
 struct notifier_block;         /* in notifier.h */
+struct iov_iter;               /* in uio.h */
 
 /* bits in flags of vmalloc's vm_struct below */
 #define VM_IOREMAP             0x00000001      /* ioremap() and friends */
index 66e13bffebc7209c6078519a61ffccc92be4bac9..3fa476f178875e7b5c8c19bc8b6dc590e594a1c8 100644 (file)
@@ -33,6 +33,7 @@
 #include <linux/compiler.h>
 #include <linux/memcontrol.h>
 #include <linux/llist.h>
+#include <linux/uio.h>
 #include <linux/bitops.h>
 #include <linux/rbtree_augmented.h>
 #include <linux/overflow.h>