qemu 虚拟机内的任务集未按预期工作
我正在为 linux x86-64 模拟 qemu。在 qemu 虚拟机中,我用来
taskset -c 0 prc1 & taskset -c 1 prc2 & taskset -c 2 prc3 & taskset -c 3 prc4;
同时发出 4 个进程并将它们绑定到四个核心(prc 是 process 的缩写)。然而,我发现一旦他们开始跑步;然后,在这之间,一些核心(例如 1 和 2)不执行这些进程,而是空闲或执行其他操作。您能否建议,这可能是什么原因或一种改进方法,以便我可以确保流程不会从一个核心迁移到另一个核心。
I am emulating qemu for linux x86-64. In qemu virtual machine, I am using
taskset -c 0 prc1 & taskset -c 1 prc2 & taskset -c 2 prc3 & taskset -c 3 prc4;
to simultaneously issue 4 processes and bind them to four cores (prc is short for process). However, I find that once they start running; then afterwards, in-between, some cores (say 1 and 2) do not execute those processes but either idle or do something else. Can you suggest, what could be the reason for this or a way of improvement so that, I can make sure processes don't migrate from one core to another.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些进程不会从一个核心迁移到另一个核心。每当他们需要 CPU 时,他们只会获得您绑定到的核心。这不会阻止 CPU 执行其他工作,也不会以某种方式强制进程使用内核,即使它无法运行,比如因为它正在等待 I/O。
The processes aren't migrating from one core to another. Whenever they need CPU, they will only get the core you bound them to. That won't prevent the CPUs from doing other work, nor will it somehow force a process use a core even when it cannot run, say because it's waiting for I/O.