qemu 虚拟机内的任务集未按预期工作

发布于 2024-12-25 13:56:46 字数 320 浏览 1 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落画卷 2025-01-01 13:56:46

这些进程不会从一个核心迁移到另一个核心。每当他们需要 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文