Re: [PATCH 3/13] KVM: kvm data structures

From: Arnd Bergmann
Date: Thu Oct 26 2006 - 18:56:05 EST


On Thursday 26 October 2006 19:24, Avi Kivity wrote:
> +struct kvm {
> +ÂÂÂÂÂÂÂspinlock_t lock; /* protects everything except vcpus */
> +ÂÂÂÂÂÂÂint nmemslots;
> +ÂÂÂÂÂÂÂstruct kvm_memory_slot memslots[KVM_MEMORY_SLOTS];
> +ÂÂÂÂÂÂÂstruct list_head active_mmu_pages;
> +ÂÂÂÂÂÂÂstruct kvm_vcpu vcpus[KVM_MAX_VCPUS];
> +ÂÂÂÂÂÂÂint memory_config_version;
> +ÂÂÂÂÂÂÂint busy;
> +};

Assuming that you move to the host-user == guest-real memory
model, will this data structure still be needed? It would
be really nice if a guest could simply consist of a number
of vcpu structures that happen to be used from threads in the
same process address space, but I find it hard to tell if
that is realistic.

Arnd <><
-
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/