lkml.org 
[lkml]   [2011]   [Nov]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 5/6] KVM: sort memslots by its size and use line search
On 11/20/2011 01:26 PM, Avi Kivity wrote:
> >
> > int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
> > void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
> > @@ -335,7 +340,14 @@ static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
> > static inline struct kvm_memory_slot *
> > id_to_memslot(struct kvm_memslots *slots, int id)
> > {
> > - return &slots->memslots[id];
> > + int i;
> > +
> > + for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
> > + if (slots->memslots[i].id == id)
> > + return &slots->memslots[i];
> > +
>
> Is that in any hot path? we could make an array for doing this translation.

Never mind, I see patch 6. I should have known you wouldn't leave it
like that.

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



\
 
 \ /
  Last update: 2011-11-20 12:31    [W:0.121 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site