Re: PROBLEM: Oops 2 with 2.2.14/smp on new HP hardware

From: Manfred Spraul (manfreds@colorfullife.com)
Date: Sun Mar 26 2000 - 09:23:14 EST


I looked through your oops repoort, and the report describes an
impossible sequence:

the copy operation to user space failed, but this cannot fail: an
exception handler is installed, and that catches any exceptions.

Which linker/compiler are you using?
        sh /usr/src/linux/scripts/ver_linux

Is that the first oops, or has there been another oopses since the last
reboot?

Could you try the attached test program? gettimeofday() should return
-1, errno=14 [EFAULT]

And could you send me the memory map of a running 'mar15d' process?

        cat /proc/<pid>/maps

--
	Manfred

#include <unistd.h> #include <sys/time.h> #include <stdlib.h> #include <stdio.h> #include <errno.h>

void a_read_only_filler_function(void) { printf("something.\n"); } int main() { int ret; printf("testtime.\n"); ret = gettimeofday((void*)a_read_only_filler_function,NULL); printf("returned: %d, errno %d.\n", ret, errno); ret = gettimeofday((void*)0x400e340,NULL); printf("returned: %d, errno %d.\n", ret, errno); return 0; }

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Mar 31 2000 - 21:00:17 EST