Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

KVM: documentation: fix KVM_CAP_X2APIC_API information

The KVM_X2APIC_API_USE_32BIT_IDS feature applies to both
KVM_SET_GSI_ROUTING and KVM_SIGNAL_MSI, but was not mentioned in the
documentation for the latter ioctl.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

+4 -3
+4 -3
Documentation/virtual/kvm/api.txt
··· 2224 2224 for the device that wrote the MSI message. For PCI, this is usually a 2225 2225 BFD identifier in the lower 16 bits. 2226 2226 2227 - On x86, address_hi is ignored unless the KVM_CAP_X2APIC_API capability is 2228 - enabled. If it is enabled, address_hi bits 31-8 provide bits 31-8 of the 2229 - destination id. Bits 7-0 of address_hi must be zero. 2227 + On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS 2228 + feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled, 2229 + address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of 2230 + address_hi must be zero. 2230 2231 2231 2232 2232 2233 4.71 KVM_CREATE_PIT2