Lines Matching refs:gdb
203 gdb vmlinux
204 (gdb) l *0xc021e50e
214 gdb vmlinux
215 (gdb) p vt_ioctl
216 (gdb) l *(0x<address of vt_ioctl> + 0xda8)
218 (gdb) l *(vt_ioctl + 0xda8)
226 this shows the problem in the :jbd: module. You can load that module in gdb
228 gdb fs/jbd/jbd.ko
229 (gdb) p log_wait_commit
230 (gdb) l *(0x<address> + 0xa3)
232 (gdb) l *(log_wait_commit + 0xa3)