Commit 6a4a98397331723dce25a7537270548d91523431

Authored by Avi Kivity
1 parent 3a624e29c7

KVM: Reorder ioctls in kvm.h

Somehow the VM ioctls got unsorted; resort.

Signed-off-by: Avi Kivity <avi@redhat.com>

Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff

... ... @@ -495,11 +495,6 @@
495 495 * ioctls for VM fds
496 496 */
497 497 #define KVM_SET_MEMORY_REGION _IOW(KVMIO, 0x40, struct kvm_memory_region)
498   -#define KVM_SET_NR_MMU_PAGES _IO(KVMIO, 0x44)
499   -#define KVM_GET_NR_MMU_PAGES _IO(KVMIO, 0x45)
500   -#define KVM_SET_USER_MEMORY_REGION _IOW(KVMIO, 0x46,\
501   - struct kvm_userspace_memory_region)
502   -#define KVM_SET_TSS_ADDR _IO(KVMIO, 0x47)
503 498 /*
504 499 * KVM_CREATE_VCPU receives as a parameter the vcpu slot, and returns
505 500 * a vcpu fd.
... ... @@ -507,6 +502,11 @@
507 502 #define KVM_CREATE_VCPU _IO(KVMIO, 0x41)
508 503 #define KVM_GET_DIRTY_LOG _IOW(KVMIO, 0x42, struct kvm_dirty_log)
509 504 #define KVM_SET_MEMORY_ALIAS _IOW(KVMIO, 0x43, struct kvm_memory_alias)
  505 +#define KVM_SET_NR_MMU_PAGES _IO(KVMIO, 0x44)
  506 +#define KVM_GET_NR_MMU_PAGES _IO(KVMIO, 0x45)
  507 +#define KVM_SET_USER_MEMORY_REGION _IOW(KVMIO, 0x46,\
  508 + struct kvm_userspace_memory_region)
  509 +#define KVM_SET_TSS_ADDR _IO(KVMIO, 0x47)
510 510 /* Device model IOC */
511 511 #define KVM_CREATE_IRQCHIP _IO(KVMIO, 0x60)
512 512 #define KVM_IRQ_LINE _IOW(KVMIO, 0x61, struct kvm_irq_level)