I'm trying to debug Linux source code using gdb+qemu solution.
I successfully compiled a debug-able kernel and connected to gdb.
However, when I'm trying to debug NVME part, the debugger acts as the follow:
- Break at the target line performs OK.
- "n": Nest step, "s": step in will immideatly jump to APIC timer interrupt.
- Set a break point after (e.g first bp at line 100, second at 101), the program will only break at the first.
Thus I would like to ask how to avoid the debugger jump into the timer interrupt each time.
Thanks a lot!