(gdb) target remote localhost:1200
## This is defined int he .gdbinit and it will list all the addresses of the loaded modules
(gdb) mod-list-syms
add-symbol-file lnet.ko 0xffffffffa03c8000
add-symbol-file sha512_generic.ko 0xffffffffa00a8000
add-symbol-file sha256_generic.ko 0xffffffffa0065000
add-symbol-file crc32c_intel.ko 0xffffffffa0023000
add-symbol-file libcfs.ko 0xffffffffa0356000
add-symbol-file fuse.ko 0xffffffffa0231000
add-symbol-file autofs4.ko 0xffffffffa034e000
add-symbol-file sunrpc.ko 0xffffffffa02f5000
add-symbol-file bnx2fc.ko 0xffffffffa02d7000
....
## Add the symbols to GDB using the module with debugging symbols you copied to your host machine
(gdb) add-symbol-file /path/to/lnet.ko 0xffffffffa03c8000
## Add breakpoints as you wish
## continue execution
(gdb) continue |