these things are very hard to figure out.
it seems the kernel faulted (no page found) on a register read.
it is possible for it to be hardware but i don't know how likely.
no way i see how to say it was the disk drive so that seems like a leap.
sometimes it has to do with modules unloading when they should not especially when the machine is idle.
sometimes it's a bug in the code: OOPS
all i can tell you more and i might be out to lunch on this
the process knotify caused the problem which i think is a KDE desktop thing
(you use KDE ?)
first thing to do is go into the KDE thingy and see if you can turn knotify off.
might not be able to.
it did a syscall to the kernel -- when a userspace program calls a syscall, it calls int 0x80 with the number of the syscall stored in the eax register.
Then the kernel uses the function system_call() that is implemented on x86
kernel tree in arch/i386/kernel/entry.S to call the right syscall
requested by the user.
Code:
Dec 25 04:08:29 localhost kernel: [<c0404013>] syscall_call+0x7/0xb
your eax register was NULL
Code:
Dec 25 04:08:29 localhost kernel: eax: 00000000
might be hardware interupt related or a bad driver or just some bad kernel code i just don't see any way to know. i never trust those jacked redhat kernels and i would try compiling my own vanilla kernel like it comes from the developers. I have read some developer boards where the redhat people are kernel hacking in full clueless mode.