免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 4755 | 回复: 14
打印 上一主题 下一主题

why vfree() must not be called in interrupt context? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-08-07 17:42 |只看该作者 |倒序浏览
论坛里有人问vfree(): sleeping in interrupt!!的问题,看了一下vfree的code, 没有发现vfree里有引起sleep的code,想了半天+google也没有发现什么有价值的信息。找到的几个帖子,都是说vfree不能在interrupt context里调用,但是都没有说明为什么?

最后去Linux Kernel Newbies的irc channel(irc.oftc.net #kernelnewbies)去问了一下,有个叫peterz的id回答了我的问题:

Q: Why vfree must not be called in interrupt context?

A: the tlb flushing can deadlock with IRQs disabled as it relies on IPIs

suppose two cpus are in interrupt context (with interrupts disabled),
both then want to vfree which would result in a TLB flush, the TLB flush
will IPI the other cpu to clear its TLB, but the other CPU has interrupts
disabled so both keep waiting for the other to process the TLB flush -> deadlock


btw, 我怀疑peterz就是大牛Peter Zijlstra

论坛徽章:
3
金牛座
日期:2014-06-14 22:04:062015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:49:45
2 [报告]
发表于 2009-08-07 20:00 |只看该作者

回复 #1 eexplorer 的帖子

vfree可能直接调用睡眠函数,中断中是不允许睡眠的

论坛徽章:
0
3 [报告]
发表于 2009-08-07 20:51 |只看该作者

回复 #1 eexplorer 的帖子

学习啦~

论坛徽章:
0
4 [报告]
发表于 2009-08-07 22:34 |只看该作者
与重入有关吧

论坛徽章:
0
5 [报告]
发表于 2009-08-08 01:08 |只看该作者
vfree对应的时vmalloc,分配的可能是不连续的内存空间。
可能导致睡眠

论坛徽章:
0
6 [报告]
发表于 2009-08-08 07:27 |只看该作者
原帖由 dreamice 于 2009-8-7 20:00 发表
vfree可能直接调用睡眠函数,中断中是不允许睡眠的


I've already said in my post, that I haven't found any code in vfree() than will make it sleep. If you find any,  please point out!

论坛徽章:
0
7 [报告]
发表于 2009-08-08 07:29 |只看该作者
原帖由 emmoblin 于 2009-8-8 01:08 发表
vfree对应的时vmalloc,分配的可能是不连续的内存空间。
可能导致睡眠


not sure why you got this conclusion?

论坛徽章:
0
8 [报告]
发表于 2009-08-10 11:14 |只看该作者
IPIs是什么,没听过...
意思是多处理器中发生死锁?

论坛徽章:
0
9 [报告]
发表于 2009-08-10 11:26 |只看该作者
处理器间通信吗?
处理器通知其他处理器tlb flush.
为什么要等待其他处理器返回呢?这种通信机制是代码上看不到的呢?
如果是,那么就是纯硬件实现了,那为什么硬件是没有考虑到这个锁的问题?
为什么又只有在关中断的情况下才出现这种死锁?

[ 本帖最后由 epegasus 于 2009-8-10 11:50 编辑 ]

论坛徽章:
0
10 [报告]
发表于 2009-08-10 11:54 |只看该作者
原帖由 epegasus 于 2009-8-10 11:14 发表
IPIs是什么,没听过...
意思是多处理器中发生死锁?


在x86的smp环境下,一个processor可以通过他自己的local apic向其他的cpu 发送interrupt (inter-processor interrupt)。

如果需要在每个cpu上flush tlb的话,就需要用到ipi了。

void flush_tlb_all(void)
{
        on_each_cpu(do_flush_tlb_all, NULL, 1);
}

在vfree这个case里,一旦两个cpu都disalbe了IRQ再去flush tlb的话,就有可能引起死锁。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP