spinlock 和 cli 一起使用
我最近从 http: //www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.34.1.tar.bz2 。我在 linux-2.6.34.1\Documentation 文件夹中名为 spinlocks.txt 的文件中遇到了以下段落。
“它确实意味着,如果你有一些代码这样做
cli();
.. critical section ..
sti();
,而另一个序列这样做,
spin_lock_irqsave(flags);
.. critical section ..
spin_unlock_irqrestore(flags);
那么它们不是相互排斥的,并且关键区域可能会发生 同时在两个不同的CPU上。这本身很好,但是 关键区域最好对不同的事物具有关键性(即它们 不能互相踩踏)。 ?
如果某些代码使用 cli()/sti() 而同一代码的其他部分使用 spin_lock_irqsave(flags)/spin_unlock_irqrestore(flags) ,它们会产生什么影响
I recently downloaded linux source from http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.34.1.tar.bz2 . I came across the below paragraph in the file called spinlocks.txt in linux-2.6.34.1\Documentation folder.
" it does mean that if you have some code that does
cli();
.. critical section ..
sti();
and another sequence that does
spin_lock_irqsave(flags);
.. critical section ..
spin_unlock_irqrestore(flags);
then they are NOT mutually exclusive, and the critical regions can happen
at the same time on two different CPU's. That's fine per se, but the
critical regions had better be critical for different things (ie they
can't stomp on each other). "
How can they impact if some code is using cli()/sti() and other part of the same code uses spin_lock_irqsave(flags)/spin_unlock_irqrestore(flags) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的关键部分是“在两个不同的CPU上”。一些背景:
cli/sti
就足以防止 IRQ 处理程序搞砸了。spin_lock_irqsave()
和spin_unlock_irqrestore()
的原因。The key part here is "on two different CPUs". Some background:
cli/sti
around the critical section to prevent an IRQ handler from messing things up.spin_lock_irqsave()
andspin_unlock_irqrestore()
were invented.