public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2011-06-28 18:42:37 to 2011-06-30 13:21:54 UTC [more...]

[PATCH v3 0/9] Steal time for KVM
 2011-06-30 13:21 UTC  (21+ messages)
` [PATCH v3 1/9] introduce kvm_read_guest_cached
` [PATCH v3 2/9] KVM-HDR Add constant to represent KVM MSRs enabled bit
` [PATCH v3 3/9] KVM-HDR: KVM Steal time implementation
` [PATCH v3 4/9] KVM-HV: "
` [PATCH v3 5/9] KVM-HV: use schedstats to calculate steal time
` [PATCH v3 6/9] KVM-GST: Add a pv_ops stub for "
` [PATCH v3 7/9] KVM-GST: KVM Steal time accounting
` [PATCH v3 8/9] KVM-GST: adjust scheduler cpu power
` [PATCH v3 9/9] KVM-GST: KVM Steal time registration

KVM call agenda for June 28
 2011-06-30 12:54 UTC  (10+ messages)

[PATCH] compat_ioctl: fix warning caused by qemu
 2011-06-30 11:01 UTC 

[PATCH v2 00/31] Implement user mode network for kvm tools
 2011-06-30  8:56 UTC  (33+ messages)
` [PATCH v2 01/31] kvm tools: Introduce ethernet frame buffer system for uip
` [PATCH v2 02/31] kvm tools: Add ARP support "
` [PATCH v2 03/31] kvm tools: Add IPV4 "
` [PATCH v2 04/31] kvm tools: Implement IP checksum "
` [PATCH v2 05/31] kvm tools: Add ICMP support "
` [PATCH v2 06/31] kvm tools: Introduce struct uip_udp to present UDP package
` [PATCH v2 07/31] kvm tools: Introduce struct uip_pseudo_hdr to present UDP pseudo header
` [PATCH v2 08/31] kvm tools: Introduce struct uip_udp_socket
` [PATCH v2 09/31] kvm tools: Add two helpers to return UDP {header, total} length
` [PATCH v2 10/31] kvm tools: Add helper to return ethernet header length
` [PATCH v2 11/31] kvm tools: Implement uip_csum_udp() to calculate UDP checksum
` [PATCH v2 12/31] kvm tools: Add UDP support for uip
` [PATCH v2 13/31] kvm tools: Introduce struct uip_tcp to present TCP package
` [PATCH v2 14/31] kvm tools: Introduce struct uip_tcp_socket
` [PATCH v2 15/31] kvm tools: Add helpers to return TCP {header, total, payload} length
` [PATCH v2 16/31] kvm tools: Add helper to return start address of TCP payload
` [PATCH v2 17/31] kvm tools: Add helpers to test whether SYN or FIN bit is set
` [PATCH v2 18/31] kvm tools: Add helper to allocate and get TCP initial sequence number
` [PATCH v2 19/31] kvm tools: Implement uip_csum_tcp() to calculate TCP checksum
` [PATCH v2 20/31] kvm tools: Add TCP support for uip
` [PATCH v2 21/31] kvm tools: Introduce uip_init() "
` [PATCH v2 22/31] kvm tools: Introduce uip_tx() "
` [PATCH v2 23/31] kvm tools: Introduce uip_rx() "
` [PATCH v2 24/31] kvm tools: Add MACRO for user and tap mode for virtio net
` [PATCH v2 25/31] kvm tools: Reanme net_device to net_dev
` [PATCH v2 26/31] kvm tools: Introduce -net {user, tap, none} options for virtio net
` [PATCH v2 27/31] kvm tools: Change default guest MAC address to 00:15:15:15:15:15
` [PATCH v2 28/31] kvm tools: Make virtio net work with user mode network
` [PATCH v2 29/31] kvm tools: Make default network mode to user mode
` [PATCH v2 30/31] kvm tools: Make default host ip address to 192.168.33.1
` [PATCH v2 31/31] kvm tools: Introduce struct net_dev_operations

[PATCH 0/17] Hypervisor-mode KVM on POWER7 and PPC970
 2011-06-30  8:34 UTC  (22+ messages)
` [PATCH 01/17] KVM: PPC: Fix machine checks on 32-bit Book3S
` [PATCH 02/17] KVM: PPC: Move fields between struct kvm_vcpu_arch and kvmppc_vcpu_book3s
` [PATCH 03/17] KVM: PPC: Split out code from book3s.c into book3s_pr.c
` [PATCH 04/17] powerpc, KVM: Rework KVM checks in first-level interrupt handlers
` [PATCH 05/17] KVM: PPC: Deliver program interrupts right away instead of queueing them
` [PATCH 06/17] KVM: PPC: Pass init/destroy vm and prepare/commit memory region ops down
` [PATCH 07/17] KVM: PPC: Move guest enter/exit down into subarch-specific code
` [PATCH 08/17] powerpc: Set up LPCR for running guest partitions
` [PATCH 09/17] KVM: PPC: Split host-state fields out of kvmppc_book3s_shadow_vcpu
` [PATCH 10/17] KVM: PPC: Add support for Book3S processors in hypervisor mode
` [PATCH 11/17] KVM: PPC: Handle some PAPR hcalls in the kernel
` [PATCH 12/17] KVM: PPC: Accelerate H_PUT_TCE by implementing it in real mode
` [PATCH 13/17] KVM: PPC: Allow book3s_hv guests to use SMT processor modes
` [PATCH 14/17] KVM: PPC: Allocate RMAs (Real Mode Areas) at boot for use by guests
` [PATCH 15/17] powerpc, KVM: Split HVMODE_206 cpu feature bit into separate HV and architecture bits
` [PATCH 16/17] KVM: PPC: book3s_hv: Add support for PPC970-family processors
` [RFC PATCH 17/17] KVM: PPC: Add an ioctl for userspace to select which platform to emulate

[PATCH 1/9] kvm tools: Don't dynamically allocate threadpool jobs
 2011-06-30  8:30 UTC  (11+ messages)
` [PATCH 2/9] kvm tools: Process virtio-blk requests in parallel
` [PATCH 3/9] kvm tools: Allow giving instance names
` [PATCH 4/9] kvm tools: Provide instance name when running 'kvm debug'
` [PATCH 5/9] kvm tools: Provide instance name when running 'kvm pause'
` [PATCH 6/9] kvm tools: Add virtio-balloon device
` [PATCH 7/9] kvm tools: Advise memory allocated for guest RAM as KSM mergable
` [PATCH 8/9] kvm tools: Add 'kvm balloon' command
` [PATCH 9/9] kvm tools: Stop VCPUs before freeing struct kvm

[PATCH v3 01/19] KVM: MMU: fix walking shadow page table
 2011-06-30  8:28 UTC  (19+ messages)
` [PATCH v3 02/19] KVM: MMU: do not update slot bitmap if spte is nonpresent
` [PATCH v3 03/19] KVM: x86: introduce vcpu_mmio_gva_to_gpa to cleanup the code
` [PATCH v3 04/19] KVM: MMU: cache mmio info on page fault path
` [PATCH v3 05/19] KVM: MMU: optimize to handle dirty bit
` [PATCH v3 06/19] KVM: MMU: cleanup for FNAME(fetch)
` [PATCH v3 07/19] KVM: MMU: rename 'pt_write' to 'emulate'
` [PATCH v3 08/19] KVM: MMU: count used shadow pages on prepareing path
` [PATCH v3 09/19] KVM: MMU: split kvm_mmu_free_page
` [PATCH v3 10/19] KVM: MMU: remove bypass_guest_pf
` [PATCH v3 11/19] KVM: MMU: filter out the mmio pfn from the fault pfn
` [PATCH v3 12/19] KVM: MMU: abstract some functions to handle "
` [PATCH v3 13/19] KVM: MMU: introduce the rules to modify shadow page table
` [PATCH v3 14/19] KVM: MMU: clean up spte updating and clearing
` [PATCH v3 15/19] KVM: MMU: do not need atomicly to set/clear spte
` [PATCH v3 16/19] KVM: MMU: lockless walking shadow page table
` [PATCH v3 17/19] KVM: MMU: reorganize struct kvm_shadow_walk_iterator
` [PATCH v3 18/19] KVM: MMU: mmio page fault support
` [PATCH v3 19/19] KVM: MMU: trace mmio page fault

[PATCH v2] block/raw-posix: Linux compat-ioctl warning workaround
 2011-06-30  8:06 UTC  (2+ messages)

[PATCH] virt: Cleaning up debug messages
 2011-06-29 22:31 UTC 

Any problem if I use ionice on KVM?
 2011-06-29 19:32 UTC 

kvm monitor socket - connection refused
 2011-06-29 18:06 UTC  (5+ messages)

[PATCH 0/3] Preparatory perf patches for KVM PMU support
 2011-06-29 16:27 UTC  (7+ messages)
` [PATCH 1/3] perf: add context field to perf_event
` [PATCH 2/3] x86, perf: add constraints for architectural PMU v1
` [PATCH 3/3] perf: export perf_event_refresh() to modules

missing compat-ioctl for CDROM_DRIVE_STATUS + FDGETPRM
 2011-06-29 15:36 UTC  (7+ messages)

[PATCH] block/raw-posix: Linux compat-ioctl warning workaround
 2011-06-29 13:57 UTC  (2+ messages)

[PATCH v2 0/22] KVM: optimize for MMIO handled
 2011-06-29 13:05 UTC  (34+ messages)
` [PATCH v2 03/22] KVM: x86: fix broken read emulation spans a page boundary
` [PATCH v2 04/22] KVM: x86: introduce vcpu_gva_to_gpa to cleanup the code
` [PATCH v2 05/22] KVM: x86: abstract the operation for read/write emulation
` [PATCH v2 07/22] KVM: MMU: cache mmio info on page fault path
` [PATCH v2 19/22] KVM: MMU: lockless walking shadow page table
` [PATCH v2 21/22] KVM: MMU: mmio page fault support

[PATCH 0/5] perf support for amd guest/host-only bits v2
 2011-06-29 12:05 UTC  (7+ messages)

[GIT PULL] KVM fix for Linux 3.0-rc5
 2011-06-29 11:43 UTC 

virtio scsi host draft specification, v3
 2011-06-29 10:35 UTC  (12+ messages)

virtio scsi host draft specification, v3
 2011-06-29 10:27 UTC  (7+ messages)

[PATCH kvm-unit-tests v2] access: check SMEP on prefetch pte path
 2011-06-29 10:24 UTC 

[Qemu-devel] [PATCH] qemu-img: Add cache command line option
 2011-06-29  9:48 UTC  (3+ messages)
` [PATCHv4] "

[PATCH v2 00/11] KVM in-guest performance monitoring
 2011-06-29  9:26 UTC  (4+ messages)

[PATCH V7 4/4 net-next] vhost: vhost TX zero-copy support
 2011-06-29  9:13 UTC  (2+ messages)

RFT: virtio_net: limit xmit polling
 2011-06-29  8:42 UTC  (3+ messages)

[PATCH 0/2] Introduce iommu_commit() function
 2011-06-29  5:51 UTC  (3+ messages)

[PATCH V7 2/4 net-next] skbuff: Add userspace zero-copy buffers in skb
 2011-06-29  4:28 UTC  (5+ messages)

[PATCH] drivers/staging/zcache: support multiple clients, prep for RAMster and KVM
 2011-06-28 21:47 UTC  (2+ messages)

[PATCH] KVM test: Adding Fedora15 to the list of guests
 2011-06-28 21:05 UTC 

SR-IOV and KVM?
 2011-06-28 20:09 UTC  (6+ messages)

[PATCH v2 0/7] Steal time for KVM
 2011-06-28 18:02 UTC  (6+ messages)
` [PATCH v2 3/7] KVM-HV: KVM Steal time implementation

[PATCH] KVM test: Increase default guest memory size to 1024 MB
 2011-06-28 18:42 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox