| Kernel v2.1.101 /mm/mlock.c |
|---|
 2.1.101
 mm
 mlock.c
diff -u --recursive --new-file v2.1.100/linux/mm/mlock.c linux/mm/mlock.c
--- v2.1.100/linux/mm/mlock.c Thu May 7 22:51:55 1998
+++ linux/mm/mlock.c Fri May 8 00:32:31 1998
@@ -129,8 +129,8 @@
if (newflags & VM_LOCKED)
while (start < end) {
- char c;
- get_user(c,(char *) start);
+ int c;
+ get_user(c,(int *) start);
__asm__ __volatile__("": :"r" (c));
start += PAGE_SIZE;
}
|