<div dir="ltr">Hi<div>When I insert external kernel module which is compiled out of tree I got error:</div><div><br></div><div>root:/run# insmod ./my_module.ko<br>[  137.443823] my_module: Unknown symbol reboot_mode (err 0)<br></div><div><br></div><div>I investigated that I have attached in my my_module.c file:</div><div>#include <linux/reboot.h><br></div><div>and in this file we have:</div><div>extern enum reboot_mode reboot_mode;<br></div><div>However reboot_mode symbol is not exported with macro EXPORT_SYMBOL_GPL.</div><div>Probably this is the reason why symbol is not seen in my module. Then why the same issue doesn't occur here:</div><div>/arch/arm/kernel/setup.c<br></div><div>/arch/arm64/kernel/process.c</div><div>Those linux files also use global variable reboot_mode.</div></div>