如何检测 Linux 驱动程序的重新启动/关闭
我有一个可加载的linux模块来控制一些硬件。我需要在软重新启动之前运行一些代码,但是,我注意到在这种情况下似乎没有调用模块析构函数,所以我想知道如何在重新启动之前通知驱动程序。
I have a loadable linux module which controls some hardware. I need to run some code before a soft reboot, however, I noticed the module destructor does not seem to be called in this situation, so I'm wondering how to have the driver informed before the reboot occurs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
register_reboot_notifier()
。例如,您可以查看 此处:参见第 181、142、129 行。You want
register_reboot_notifier()
. For an example you can look here: see lines 181, 142, 129.