How to get the address of a kernel module that was inserted using insmod?
embedded-linux, linux, linux-device-driver, linux-kernel
Solution
`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`.
Problem
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 after system boots up). There are several modules I insmod manually. So I need to detect which module among these is triggering the crash. Please let me know how to get the address of each modules loaded using insmod.