messages from 2007-06-12 22:03:15 to 2007-06-18 04:00:03 UTC [more...]
[PATCH 0/5] KVM paravirt_ops implementation
2007-06-18 4:00 UTC (9+ messages)
` [PATCH 1/5] KVM paravirt_ops core infrastructure
` [PATCH 2/5] KVM: Implement CR read caching for KVM paravirt_ops
` [PATCH 3/5] KVM: Add paravirt MMU write support
` [PATCH 4/5] KVM: Add hypercall queue for paravirt_ops implementation
` [PATCH 5/5] KVM: paravirt time source
Windows XP crash: emulation failed but !mmio_needed?
2007-06-17 21:32 UTC
Total freeze after modprobe kvm-amd
2007-06-17 19:45 UTC
/dev/kvm permissions
2007-06-17 19:17 UTC (3+ messages)
Suspending with kvm and kvm_loaded
2007-06-17 18:55 UTC (16+ messages)
Panic when loading kvm-amd.ko
2007-06-17 18:31 UTC (4+ messages)
[BUG] Oops with KVM-27
2007-06-17 16:58 UTC (20+ messages)
` [kvm-devel] "
` [PATCH 1/2] kvm: Fix x86 emulator writeback
` [PATCH 2/2] kvm: avoid useless memory write when possible
[ANNOUNCE, CFP] KVM Forum 2007
2007-06-17 15:51 UTC
[PATCH RFC 0/3] Virtio draft II
2007-06-17 14:25 UTC (9+ messages)
` [PATCH RFC 0/3] Virtio draft III
` [PATCH RFC 1/3] Virtio draft III: virtio.h
` [PATCH RFC 2/3] Virtio draft III: example net driver
` [PATCH RFC 3/3] Virtio draft III: example block driver
` [PATCH] Lguest implemention of virtio draft III
Autodesk Autocad ready to download
2007-06-17 13:11 UTC
[PATCH 00/58] KVM updates for 2.6.23
2007-06-17 9:44 UTC (59+ messages)
` [PATCH 01/58] KVM: VMX: Enable io bitmaps to avoid IO port 0x80 VMEXITs
` [PATCH 02/58] KVM: SVM: Allow direct guest access to PC debug port
` [PATCH 03/58] KVM: Assume that writes smaller than 4 bytes are to non-pagetable pages
` [PATCH 04/58] KVM: Avoid saving and restoring some host CPU state on lightweight vmexit
` [PATCH 05/58] KVM: Unindent some code
` [PATCH 06/58] KVM: Reduce misfirings of the fork detector
` [PATCH 07/58] KVM: Be more careful restoring fs on lightweight vmexit
` [PATCH 08/58] KVM: Unify kvm_mmu_pre_write() and kvm_mmu_post_write()
` [PATCH 09/58] KVM: MMU: Respect nonpae pagetable quadrant when zapping ptes
` [PATCH 10/58] KVM: Update shadow pte on write to guest pte
` [PATCH 11/58] KVM: Increase mmu shadow cache to 1024 pages
` [PATCH 12/58] KVM: Fix potential guest state leak into host
` [PATCH 13/58] KVM: Move some more msr mangling into vmx_save_host_state()
` [PATCH 14/58] KVM: Rationalize exception bitmap usage
` [PATCH 15/58] KVM: Consolidate guest fpu activation and deactivation
` [PATCH 16/58] KVM: Set cr0.mp for guests
` [PATCH 17/58] KVM: Implement IA32_EBL_CR_POWERON msr
` [PATCH 18/58] KVM: MMU: Simplify kvm_mmu_free_page() a tiny bit
` [PATCH 19/58] KVM: MMU: Store shadow page tables as kernel virtual addresses, not physical
` [PATCH 20/58] KVM: VMX: Only reload guest msrs if they are already loaded
` [PATCH 21/58] KVM: Avoid corrupting tr in real mode
` [PATCH 22/58] KVM: Fix vmx I/O bitmap initialization on highmem systems
` [PATCH 23/58] KVM: VMX: Use local labels in inline assembly
` [PATCH 24/58] KVM: VMX: Handle #SS faults from real mode
` [PATCH 25/58] KVM: VMX: Avoid saving and restoring msrs on lightweight vmexit
` [PATCH 26/58] KVM: VMX: Cleanup redundant code in MSR set
` [PATCH 27/58] KVM: VMX: Avoid saving and restoring msr_efer on lightweight vmexit
` [PATCH 28/58] Use menuconfig objects II - KVM/Virt
` [PATCH 29/58] KVM: x86 emulator: implement wbinvd
` [PATCH 30/58] KVM: Fix includes
` [PATCH 31/58] KVM: Use symbolic constants instead of magic numbers
` [PATCH 32/58] KVM: MMU: Use slab caches for shadow pages and their headers
` [PATCH 33/58] KVM: MMU: Simplify fetch() a little bit
` [PATCH 34/58] KVM: MMU: Move set_pte_common() to pte width dependent code
` [PATCH 35/58] KVM: MMU: Pass the guest pde to set_pte_common
` [PATCH 36/58] KVM: MMU: Fold fix_read_pf() into set_pte_common()
` [PATCH 37/58] KVM: MMU: Fold fix_write_pf() "
` [PATCH 38/58] KVM: Move shadow pte modifications from set_pte/set_pde to set_pde_common()
` [PATCH 39/58] KVM: Make shadow pte updates atomic
` [PATCH 40/58] KVM: MMU: Make setting shadow ptes atomic on i386
` [PATCH 41/58] KVM: MMU: Remove cr0.wp tricks
` [PATCH 42/58] KVM: MMU: Simpify accessed/dirty/present/nx bit handling
` [PATCH 43/58] KVM: MMU: Don't cache guest access bits in the shadow page table
` [PATCH 44/58] KVM: MMU: Remove unused large page marker
` [PATCH 45/58] KVM: Lazy guest cr3 switching
` [PATCH 46/58] KVM: Replace C code with call to ARRAY_SIZE() macro
` [PATCH 47/58] KVM: Remove unnecessary initialization and checks in mark_page_dirty()
` [PATCH 48/58] KVM: Fix vcpu freeing for guest smp
` [PATCH 49/58] KVM: Fix adding an smp virtual machine to the vm list
` [PATCH 50/58] KVM: Enable guest smp
` [PATCH 51/58] KVM: Move duplicate halt handling code into kvm_main.c
` [PATCH 52/58] KVM: Emulate hlt on real mode for Intel
` [PATCH 53/58] KVM: Keep an upper bound of initialized vcpus
` [PATCH 54/58] KVM: Flush remote tlbs when reducing shadow pte permissions
` [PATCH 55/58] KVM: SVM: Replace memset(<addr>, 0, PAGESIZE) with clear_page(<addr>)
` [PATCH 56/58] KVM: VMX: "
` [PATCH 57/58] KVM: Initialize the BSP bit in the APIC_BASE msr correctly
` [PATCH 58/58] KVM: VMX: Ensure vcpu time stamp counter is monotonous
EXCEL和PPT在管理中的高级运用
2007-06-16 16:36 UTC
autocad 2008
2007-06-16 14:15 UTC
kvm-intel kernel panicing 2.6.22 on T7200
2007-06-16 9:52 UTC (12+ messages)
[GIT PULL] KVM fix for 2.6.22
2007-06-16 7:47 UTC (3+ messages)
AutoCAD 2008 ready to download
2007-06-15 22:49 UTC
岗位分析、任职资格与薪酬设计
2007-06-15 16:37 UTC
More virtio users
2007-06-15 16:26 UTC (12+ messages)
` [kvm-devel] [Xen-devel] "
` [kvm-devel] "
` [Xen-devel] "
` [Xen-devel] "
[ kvm-Bugs-1737598 ] Trouble with AMD Athlon 64 X2 4200+ EE
2007-06-15 4:13 UTC
Fwd: Thank you, we are accepting your refinance loan request
2007-06-14 10:10 UTC
SMP guest boots
2007-06-14 8:30 UTC (7+ messages)
[PATCH 0/9] in-kernel APIC v9 (kernel side)
2007-06-13 22:26 UTC (2+ messages)
kvm + IOMMU
2007-06-13 19:12 UTC (4+ messages)
Centrino Duo not working so hot
2007-06-13 16:51 UTC (9+ messages)
Are root privileges really needed to run kvm?
2007-06-13 15:54 UTC (11+ messages)
A testing for KVM
2007-06-13 11:41 UTC (6+ messages)
kvm-intel kernel panicing 2.6.22 on T7200
2007-06-13 11:01 UTC (2+ messages)
wiki TODO
2007-06-13 8:28 UTC (2+ messages)
[ kvm-Bugs-1736307 ] Could not create guest with memory >=2040M
2007-06-13 8:04 UTC
[ kvm-Bugs-1736305 ] Timer issue after live migration
2007-06-13 8:01 UTC
[ kvm-Bugs-1736301 ] Fail to migrate a 32bit guest from 32bit host to 64bit host
2007-06-13 7:58 UTC
[ kvm-Bugs-1736299 ] Timer is inaccurate for both 32bit and 64bit guest
2007-06-13 7:56 UTC
cache_regs & decache_regs?
2007-06-13 3:12 UTC (3+ messages)
cpuid should be VM wide instead of vCPU wide
2007-06-13 2:32 UTC (2+ messages)
2.6.22-rc4-mm2: kvm compile breakage with X86_CMPXCHG64=n
2007-06-12 22:48 UTC (7+ messages)
[PATCH 0/6] in-kernel APIC updates (kernel side)
2007-06-12 22:03 UTC (6+ messages)
` [PATCH 2/6] KVM: Cleanup an extraneous request_window
` [PATCH 3/6] KVM: Add support for handling nmi-window on VMX
` [PATCH 4/6] KVM: Distinquish between irq device output pins, and cpu irq input pins
` [PATCH 5/6] KVM: Fix for deferred interrupts
` [PATCH 6/6] KVM: Fix for a logic inversion in VNMI support under VMX
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox