summaryrefslogtreecommitdiffstats
path: root/virt/kvm/async_pf.h
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2015-05-08 14:31:44 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2015-06-19 17:16:25 +0200
commite73f61e41f3bb9bc453fd9c21b82d0b89c2b83e7 (patch)
tree83de18fd1a1c68c9fd14762e2b6a7faa0cd8d728 /virt/kvm/async_pf.h
parent05fe125fa3237de2ec5bada80031e694de78909c (diff)
downloadlinux-stable-e73f61e41f3bb9bc453fd9c21b82d0b89c2b83e7.tar.gz
linux-stable-e73f61e41f3bb9bc453fd9c21b82d0b89c2b83e7.tar.bz2
linux-stable-e73f61e41f3bb9bc453fd9c21b82d0b89c2b83e7.zip
kvm: irqchip: Break up high order allocations of kvm_irq_routing_table
The allocation size of the kvm_irq_routing_table depends on the number of irq routing entries because they are all allocated with one kzalloc call. When the irq routing table gets bigger this requires high order allocations which fail from time to time: qemu-kvm: page allocation failure: order:4, mode:0xd0 This patch fixes this issue by breaking up the allocation of the table and its entries into individual kzalloc calls. These could all be satisfied with order-0 allocations, which are less likely to fail. The downside of this change is the lower performance, because of more calls to kzalloc. But given how often kvm_set_irq_routing is called in the lifetime of a guest, it doesn't really matter much. Signed-off-by: Joerg Roedel <jroedel@suse.de> [Avoid sparse warning through rcu_access_pointer. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'virt/kvm/async_pf.h')
0 files changed, 0 insertions, 0 deletions