diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-28 17:24:03 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-04-16 15:39:08 +0200 |
commit | c110ae578ca0a10064dfbda3d786d6a733b9fe69 (patch) | |
tree | b3c672dffd74fadaf513a2151bc839773b07a470 /Documentation | |
parent | 0a62956312e9dcd0ce5c59be4f0a8d8292a62402 (diff) | |
download | linux-stable-c110ae578ca0a10064dfbda3d786d6a733b9fe69.tar.gz linux-stable-c110ae578ca0a10064dfbda3d786d6a733b9fe69.tar.bz2 linux-stable-c110ae578ca0a10064dfbda3d786d6a733b9fe69.zip |
kvm: move KVM_CAP_NR_MEMSLOTS to common code
All architectures except MIPS were defining it in the same way,
and memory slots are handled entirely by common code so there
is no point in keeping the definition per-architecture.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/virtual/kvm/api.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/virtual/kvm/api.txt b/Documentation/virtual/kvm/api.txt index 67068c47c591..b62ad0d94234 100644 --- a/Documentation/virtual/kvm/api.txt +++ b/Documentation/virtual/kvm/api.txt @@ -1117,9 +1117,8 @@ struct kvm_userspace_memory_region { This ioctl allows the user to create, modify or delete a guest physical memory slot. Bits 0-15 of "slot" specify the slot id and this value should be less than the maximum number of user memory slots supported per -VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS, -if this capability is supported by the architecture. Slots may not -overlap in guest physical address space. +VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS. +Slots may not overlap in guest physical address space. If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot" specifies the address space which is being modified. They must be |