]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
kgdb: fix optional arch functions and probe_kernel_*
authorJason Wessel <jason.wessel@windriver.com>
Wed, 20 Feb 2008 19:33:38 +0000 (13:33 -0600)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 18:05:39 +0000 (20:05 +0200)
Fix two regressions dealing with the kgdb core.

1) kgdb_skipexception and kgdb_post_primary_code are optional
functions that are only required on archs that need special exception
fixups.

2) The kernel address space scope must be set on any probe_kernel_*
function or archs such as ARCH=arm will not allow access to the kernel
memory space.  As an example, it is required to allow the full kernel
address space is when you the kernel debugger to inspect a system
call.

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/kgdb.c
mm/maccess.c

index 68aea78407e4be3fb1c27f42af3918faff0a9859..31425e0fbf207ade286695a1c9512be1de68cc00 100644 (file)
@@ -200,6 +200,17 @@ int __weak kgdb_arch_init(void)
        return 0;
 }
 
+int __weak kgdb_skipexception(int exception, struct pt_regs *regs)
+{
+       return 0;
+}
+
+void __weak
+kgdb_post_primary_code(struct pt_regs *regs, int e_vector, int err_code)
+{
+       return;
+}
+
 /**
  *     kgdb_disable_hw_debug - Disable hardware debugging while we in kgdb.
  *     @regs: Current &struct pt_regs.
index 24f81b971403a221d64158bfba16687deb2e39a0..ac40796cfb15b8d41d1b0e5f45cd093c31bf7da2 100644 (file)
 long probe_kernel_read(void *dst, void *src, size_t size)
 {
        long ret;
+       mm_segment_t old_fs = get_fs();
 
+       set_fs(KERNEL_DS);
        pagefault_disable();
        ret = __copy_from_user_inatomic(dst,
                        (__force const void __user *)src, size);
        pagefault_enable();
+       set_fs(old_fs);
 
        return ret ? -EFAULT : 0;
 }
@@ -39,10 +42,13 @@ EXPORT_SYMBOL_GPL(probe_kernel_read);
 long probe_kernel_write(void *dst, void *src, size_t size)
 {
        long ret;
+       mm_segment_t old_fs = get_fs();
 
+       set_fs(KERNEL_DS);
        pagefault_disable();
        ret = __copy_to_user_inatomic((__force void __user *)dst, src, size);
        pagefault_enable();
+       set_fs(old_fs);
 
        return ret ? -EFAULT : 0;
 }