How to get the address of a kernel module that was inserted using insmod?

前端 未结 2 2079
情歌与酒
情歌与酒 2020-12-18 02:01

I would like to know the address of a kernel module. Actually, from stack trace it looks that the crash has been triggered from a kernel module (which have been insmoded aft

2条回答
  •  执笔经年
    2020-12-18 03:01

    cat /proc/modules should give you a rough guide to where things are loaded. You might get more of a clue about exactly where the kernel crash is by looking at /proc/kallsyms.

提交回复
热议问题