I have a loadable module(driver) function that linux kernel source need to use.
The function has already opened by EXPORT_SYMBOL_GPL()
.
The linux kernel source is one of c file in linux-3.16.1/mm
.
However, I add extern function
in c file and recompile entire Linux kernel source.
The error message print undefined reference to fun
.
I think the error is occured at link time.
It could not find the function reference from the driver.
How can I solve this problem?