Re: kvm memslot questions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



thanks teacher!
1、
I do know little to kvm,the MSR_KVM_STEAL_TIME and
MSR_KVM_SYSTEM_TIME_NEW  seems relevanted to clock,and I find little
information,so can you explain to me about it or give me some
information in your convenience!!thank you very much.
2、
as to the bitmap,in fact I found there are several slots for a vm ,and
there is a main slot,I do not know if it appropriate about my
words.but system address space of vm  which has been mapped to
GPA,always use the settled slot,I printk some information in
kvm_destroy_dirty_bitmap,found that some bitmap did destoryed after VM
started,but the main slot haven't.and I only use the bitmap one
time!so do you think it still  infeasible??
I do not now how to do ,so  I can only ask you for help,thank you for
your kind help!

2016-12-13 22:32 GMT+08:00 Radim Krčmář <rkrcmar@xxxxxxxxxx>:
> 2016-12-13 09:23+0800, jack.chen:
>> thank you very very much!
>> 1、
>> I want to alloc VM memory in KVM ,not installing anything in VM,and  I
>> want to write data to that memory then let VM use it! So in order to
>> know which memory is not used by VM,I need check the bitmap,but at
>> first,I found the dirty_bitmap of slot I want to use is NULL,so I have
>> to set KVM_MEM_LOG_DIRTY_PAGES flags in KVM matually.
>
> The bitmap doesn't say if the memory is unused and userspace can zero
> the bitmap at any time, so KVM cannot depend on it for this purpose.
> VM uses everything that is configured with KVM_SET_USER_MEMORY_REGION.
>
> A simple way to get unused memory for KVM<->guest communication is to
> let the guest reserve some memory for KVM -- see MSR_KVM_STEAL_TIME or
> MSR_KVM_SYSTEM_TIME_NEW for an example.
> Guest will provide an address and KVM will fill the address with data.
>
>> 2、
>> And I have another question,the function in KVM to set dirty_bitmap call
>> static inline void set_bit_le(int nr, void *addr)
>> {
>> set_bit(nr ^ BITOP_LE_SWIZZLE, addr);
>> }
>>
>> when test the bit,I do not know if I should use BITOP_LE_SWIZZLE,It
>> seems that that right without SWIZZLE.
>
> BITOP_LE_SWIZZLE is 0 on x86 so it doesn't matter -- I assume your code
> isn't going to be useable on different endianess.
> (And cannot use the bitmap for what you are doing anyway. ;])
>
>
>> 2016-12-12 23:17 GMT+08:00 Radim Krčmář <rkrcmar@xxxxxxxxxx>:
>>> 2016-12-12 17:18+0800, jack.chen:
>>>> hello,now I want to know which GFN of VM  is available,so I set
>>>> kvm_userspace_mem->flags |= 0x1; in kvm_vm_ioctl function ,so KVM can
>>>> create dirty_bitmap for slots
>>>
>>> The caller of KVM_SET_USER_MEMORY_REGION knows which GFNs are
>>> "available", because it configures that into
>>> kvm_userspace_mem->guest_phys_addr and kvm_userspace_mem->size.
>>>
>>> KVM knows which GFNs are "available", because it remembers all memory
>>> regions that were configured.
>>>
>>>> case KVM_SET_USER_MEMORY_REGION: {
>>>> struct kvm_userspace_memory_region kvm_userspace_mem;
>>>>
>>>> ……
>>>> kvm_userspace_mem->flags |= 0x1;
>>>
>>> Why do you want to use the dirty page bitmap in KVM?
>>>
>>>> r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
>>>> break;
>>>>
>>>> and I have 2 questions:
>>>> 1.
>>>> if corresponding bit is setted,the GFN is used by VM,other than it is
>>>> available!right?
>>>
>>> The GFN is always available.
>>> If the corresponding bit in dirty log is set, then the GFN was modified
>>> since userspace did the last KVM_GET_DIRTY_LOG ioctl.
>>>
>>>> 2、
>>>> how to check wheather the bit is 1 or not,the test_bit function
>>>> returns -1 to me,I do not know if I use wrong function!
>>>> thanks in advance!!!
>>>
>>> test_bit() from arch/x86/include/asm/bitops.h returns bool so there is
>>> something wrong with your test_bit().
>>>
>>> In any case, see kvm_vm_ioctl_get_dirty_log() for what is needed to
>>> access the dirty log.
--
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




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux