CentOS / RHEL中用于KVM热插拔的acpiphp和pci_hotplug内核模块在哪里?

在这个如何,我读了以下内容:

我加载了下面的模块来获得PCI热插拔的工作:

  • acpiphp
  • pci_hotplug

您可以将这些添加到您的发行版的模块列表来加载启动,或者像这样运行一个命令。

for m in acpiphp pci_hotplug; do sudo modprobe ${m}; done 

但是,在CentOS 6.3和Red Hat Enterprise Linux 6.3上,这个模块在Ubuntu Server和Debian 6上不存在。

为什么? 任何解决方法?

可能它已经内置在你的内核(而不是一个模块)中。 你真的尝试过热插拔设备吗?

我现在不能访问CentOS / RHEL机器,但在Fedora上,我看到内核configuration包含这个:

 CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_ACPI=y 

在Ubuntu 12.04上,我看到这个:

 CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_ACPI=m