Re: 2.6.19-rc2-mm1

From: Cedric Le Goater
Date: Wed Oct 18 2006 - 15:33:53 EST


Rafael J. Wysocki wrote:
> On Wednesday, 18 October 2006 20:27, Gabriel C wrote:
>> Andrew Morton wrote:
>>> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.19-rc2/2.6.19-rc2-mm1/
>>>
>> Hello,
>>
>> I got this build error with 2.6.19-rc2-mm1:
>>
>> CHK include/linux/compile.h
>> UPD include/linux/compile.h
>> CC init/version.o
>> LD init/built-in.o
>> LD .tmp_vmlinux1
>> mm/built-in.o: In function `xip_file_write':
>> (.text+0x19a47): undefined reference to `filemap_copy_from_user'
>> make: *** [.tmp_vmlinux1] Error 1
>
> \metoo

Here's a fix i sent to andrew.

C.


Signed-off-by: Cedric Le Goater <clg@xxxxxxxxxx>
---
mm/filemap_xip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: 2.6.19-rc2-mm1/mm/filemap_xip.c
===================================================================
--- 2.6.19-rc2-mm1.orig/mm/filemap_xip.c
+++ 2.6.19-rc2-mm1/mm/filemap_xip.c
@@ -317,7 +317,7 @@ __xip_file_write(struct file *filp, cons
break;
}

- copied = filemap_copy_from_user(page, offset, buf, bytes);
+ copied = filemap_copy_from_user_atomic(page, offset, buf, bytes);
flush_dcache_page(page);
if (likely(copied > 0)) {
status = copied;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/