Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I\'m trying to analyze a Linux kernel panic on openSUSE 11.3 using kdump and the crash utility. The system is successfully creating the vmcore file, but when I go to analyze it, crash complains about
I know /sbin/init has special protection against SIGKILL and SIGSTOP from kernel for obvious reasons.
In the definition of kthread_create a task is waken up, does any one know what is this task doing ? struct task_struct *kthread_create
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Is there a way to get function caller in linux kernel? I know __func__ returns the function name wh开发者_如何学JAVAich is executing. I am looking for the function which called \"__func__\"You can get
Is there a command in gdb that I can use to (re)load / \"refresh\" source files? (As far as I can see, gdb works only with source directories, according to Debugging with GDB: Source - and there is no
I`m doing some exercise on XV6 that is mini OS for education. I want to make some patch to boot the OS from USB port. Should i put the MBR on the USB disk? But as i know , the first sector of USB disk
I am writing a code for linux kernel module and experiencing a strange b开发者_运维百科ehavior in it.
I am compiling a kernel module in linux related to creating kthreads to achieve parallelism but I am stuck at compiling issues.