patch-2.3.16 linux/kernel/ptrace.c
Next file: linux/kernel/resource.c
Previous file: linux/kernel/ksyms.c
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Thu Aug 26 12:34:55 1999
- Orig file:
v2.3.15/linux/kernel/ptrace.c
- Orig date:
Mon Jul 19 12:29:05 1999
diff -u --recursive --new-file v2.3.15/linux/kernel/ptrace.c linux/kernel/ptrace.c
@@ -10,6 +10,7 @@
#include <linux/sched.h>
#include <linux/errno.h>
#include <linux/mm.h>
+#include <linux/bigmem.h>
#include <asm/pgtable.h>
#include <asm/uaccess.h>
@@ -52,7 +53,11 @@
dst = src;
src = buf;
}
+ src = (void *) kmap((unsigned long) src, KM_READ);
+ dst = (void *) kmap((unsigned long) dst, KM_WRITE);
memcpy(dst, src, len);
+ kunmap((unsigned long) src, KM_READ);
+ kunmap((unsigned long) dst, KM_WRITE);
}
flush_page_to_ram(page);
return len;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)