diff options
author | Peter Xu <peterx@redhat.com> | 2016-07-14 13:56:33 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-07-21 20:44:19 +0300 |
commit | 3f1fea0fb5bfd78ede2ceae5dae0b24c0380f423 (patch) | |
tree | 949a85390e8f549a00e49fa0bd3c11334094cec8 /kvm-stub.c | |
parent | e1d4fb2de594ab0cbe78846bc79617b9bd50c867 (diff) |
kvm-irqchip: do explicit commit when update irq
In the past, we are doing gsi route commit for each irqchip route
update. This is not efficient if we are updating lots of routes in the
same time. This patch removes the committing phase in
kvm_irqchip_update_msi_route(). Instead, we do explicit commit after all
routes updated.
Signed-off-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'kvm-stub.c')
-rw-r--r-- | kvm-stub.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kvm-stub.c b/kvm-stub.c index 982e5900b7..64e23f6be0 100644 --- a/kvm-stub.c +++ b/kvm-stub.c @@ -135,6 +135,10 @@ int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg, return -ENOSYS; } +void kvm_irqchip_commit_routes(KVMState *s) +{ +} + int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter) { return -ENOSYS; |