]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mm: fixup compilation error due to an asm write through a const pointer
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Sat, 14 Apr 2012 16:03:10 +0000 (18:03 +0200)
committerDave Airlie <airlied@redhat.com>
Mon, 23 Apr 2012 16:41:18 +0000 (17:41 +0100)
This regression has been introduced in

commit f56f821feb7b36223f309e0ec05986bb137ce418
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date:   Sun Mar 25 19:47:41 2012 +0200

    mm: extend prefault helpers to fault in more than PAGE_SIZE

I have failed to notice this because x86 asm seems to happily compile
things as-is.

Reported-by: Geert Uytterhoeven <geert@linux-m68k.org
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
include/linux/pagemap.h

index c93a9a9bcd358565ec44a71cd223aa161c750eb2..efa26b4da8d2b9d2479284bc9cbaeff61913d634 100644 (file)
@@ -461,7 +461,7 @@ static inline int fault_in_pages_readable(const char __user *uaddr, int size)
 static inline int fault_in_multipages_writeable(char __user *uaddr, int size)
 {
        int ret;
-       const char __user *end = uaddr + size - 1;
+       char __user *end = uaddr + size - 1;
 
        if (unlikely(size == 0))
                return 0;