linux 内核态重启接口
linux 内核态重启接口
- 头文件
<linux/reboot.h>
- 源文件
kernel/reboot.c
- 调用接口
/** * orderly_reboot - Trigger an orderly system reboot * * This may be called from any context to trigger a system reboot. * If the orderly reboot fails, it will force an immediate reboot. */ void orderly_reboot(void) { schedule_work(&reboot_work); } EXPORT_SYMBOL_GPL(orderly_reboot);