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 kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html