Re: [KVM PATCH v8 3/3] KVM: create irqfd-cleanup-wq on demand

From: Avi Kivity
Date: Thu Jul 02 2009 - 10:21:22 EST


On 07/01/2009 07:09 PM, Gregory Haskins wrote:
We currently create this wq on module_init, which may be wasteful if the
host never creates a guest that uses irqfd. This patch changes the
algorithm so that the workqueue is only created when at least one guest
is using irqfd. The queue is cleaned up when the last guest using irqfd
is shutdown.

To keep things simple, we only check whether the guest has tried to create
an irqfd, not whether there are actually irqfds active.

+++ b/include/linux/kvm_host.h
@@ -144,6 +144,7 @@ struct kvm {
struct {
spinlock_t lock;
struct list_head items;
+ int init:1;

Since you're rebasing anyway... change the bitfield to a bool.

--
error compiling committee.c: too many arguments to function

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/