如何检查tasklet_init调用是否失败?
有没有办法检查初始化tasklet的tasklet_init函数是否失败?
Is there any way to check if the tasklet_init function which initializes a tasklet has failed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看源代码(在
kernel/softirq.c
中),您会发现:该函数所做的只是设置一些结构成员,因此没有可能的方法
tasklet_init
可能会失败。一般来说,如果内核函数返回
void
,那么您不需要检查它是否成功。当然,Linux 内核的好处是您可以随时参考源代码,看看是否有任何可能导致失败的原因。As you would see if you looked at the source (in
kernel/softirq.c
):all the function does is set some structure members, so there is no possible way
tasklet_init
can fail.In general if a kernel function returns
void
then you don't need to check if it succeeded or not. And of course the nice thing about the Linux kernel is that you can always refer to the source and see if there are any ways something can fail.