如何查找内核模块中的物理和逻辑核心数?

发布于 2024-12-03 06:08:47 字数 58 浏览 0 评论 0原文

Linux 中是否有内核函数可以返回物理核心的数量和 正在运行内核模块的逻辑核心(在超线程的情况下)?

Are there kernel functions in Linux that would return the number of the physical core and
logical core (in case of Hyperthreading) on which a kernel module is running ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

路还长,别太狂 2024-12-10 06:08:47

看一下 include/linux/smp.h 的结尾:smp_processor_id()
给出当前正在执行的 CPU 的编号。 get_cpu() 就可以了
同样的,也会禁用抢占,这样你就可以继续使用
该 CPU 直到调用 put_cpu() 为止。

从用户空间,您可以使用 sched_getcpu()getcpu() 获取相同的信息。

Have a look at the end of include/linux/smp.h: smp_processor_id()
gives you the number of the current executing CPU. get_cpu() will do
the same and will also disable preemption so that you will stay on
that CPU until put_cpu() is called.

From user-space, you can use sched_getcpu() or getcpu() to obtain the same information.

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