RE: Exception in kernel mode
From: Charles Krinke <hidden>
Date: 2007-03-16 16:07:58
#2 is inside the kernel as well. Look at the System.map or objdump - d vmlinux to see what exactly is at those instructions.
I suspect the actual addresses are red-herrings and this exception=20 can occur at any address. This certainly would tend to indicate=20 some sort of memory setup issue.
I think it's useful to know if the instructions at the two offsets=20 C00DEE18 & C002CE68 are similar in some way before jumping to that=20 conclusion.
Changing the Oops logic to printout the NextInstruction as well as=20 the NIP might be helpful so I could discern the difference between=20 what the program is trying to do and what it is really doing. Are there any other thoughts you might have on diagnosis techniques=20 at this point?
Try turning on KALLSYMS, this should provide more info on the oops as=20 well. - k Dear Kumar: =20 As always, your advice is appreciated. I will try turning on = CONFIG_KALLSYMS in the .config file and see if additional info is = obtained. Also, I will audit the MMU setup and see if I can see anything = unusual. =20 Charles