From: Anthony Liguori <aliguori@linux.vnet.ibm.com>
To: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
Cc: ohmura.kei@lab.ntt.co.jp, kvm@vger.kernel.org,
mtosatti@redhat.com, Anthony Liguori <aliguori@us.ibm.com>,
qemu-devel@nongnu.org, yoshikawa.takuya@oss.ntt.co.jp,
avi@redhat.com
Subject: [Qemu-devel] Re: [RFC PATCH 01/20] Modify DIRTY_FLAG value and introduce DIRTY_IDX to use as indexes of bit-based phys_ram_dirty.
Date: Thu, 22 Apr 2010 14:26:47 -0500 [thread overview]
Message-ID: <4BD0A2F7.4050207@linux.vnet.ibm.com> (raw)
In-Reply-To: <1271829445-5328-2-git-send-email-tamura.yoshiaki@lab.ntt.co.jp>
Hi,
On 04/21/2010 12:57 AM, Yoshiaki Tamura wrote:
> Replaces byte-based phys_ram_dirty bitmap with four (MASTER, VGA,
> CODE, MIGRATION) bit-based phys_ram_dirty bitmap. On allocation, it
> sets all bits in the bitmap. It uses ffs() to convert DIRTY_FLAG to
> DIRTY_IDX.
>
> Modifies wrapper functions for byte-based phys_ram_dirty bitmap to
> bit-based phys_ram_dirty bitmap. MASTER works as a buffer, and upon
> get_diry() or get_dirty_flags(), it calls
> cpu_physical_memory_sync_master() to update VGA and MIGRATION.
>
Why use an additional bitmap for MASTER instead of just updating the
VGA, CODE, and MIGRATION bitmaps together?
Regards,
Anthony Liguori
> Replaces direct phys_ram_dirty access with wrapper functions to
> prevent direct access to the phys_ram_dirty bitmap.
>
> Signed-off-by: Yoshiaki Tamura<tamura.yoshiaki@lab.ntt.co.jp>
> Signed-off-by: OHMURA Kei<ohmura.kei@lab.ntt.co.jp>
> ---
> cpu-all.h | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++----
> exec.c | 60 ++++++++++++++--------------
> 2 files changed, 152 insertions(+), 38 deletions(-)
>
> diff --git a/cpu-all.h b/cpu-all.h
> index 51effc0..3f8762d 100644
> --- a/cpu-all.h
> +++ b/cpu-all.h
> @@ -37,6 +37,9 @@
>
> #include "softfloat.h"
>
> +/* to use ffs in flag_to_idx() */
> +#include<strings.h>
> +
> #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
> #define BSWAP_NEEDED
> #endif
> @@ -846,7 +849,6 @@ int cpu_str_to_log_mask(const char *str);
> /* memory API */
>
> extern int phys_ram_fd;
> -extern uint8_t *phys_ram_dirty;
> extern ram_addr_t ram_size;
> extern ram_addr_t last_ram_offset;
> extern uint8_t *bios_mem;
> @@ -869,28 +871,140 @@ extern uint8_t *bios_mem;
> /* Set if TLB entry is an IO callback. */
> #define TLB_MMIO (1<< 5)
>
> +/* Use DIRTY_IDX as indexes of bit-based phys_ram_dirty. */
> +#define MASTER_DIRTY_IDX 0
> +#define VGA_DIRTY_IDX 1
> +#define CODE_DIRTY_IDX 2
> +#define MIGRATION_DIRTY_IDX 3
> +#define NUM_DIRTY_IDX 4
> +
> +#define MASTER_DIRTY_FLAG (1<< MASTER_DIRTY_IDX)
> +#define VGA_DIRTY_FLAG (1<< VGA_DIRTY_IDX)
> +#define CODE_DIRTY_FLAG (1<< CODE_DIRTY_IDX)
> +#define MIGRATION_DIRTY_FLAG (1<< MIGRATION_DIRTY_IDX)
> +
> +extern unsigned long *phys_ram_dirty[NUM_DIRTY_IDX];
> +
> +static inline int dirty_flag_to_idx(int flag)
> +{
> + return ffs(flag) - 1;
> +}
> +
> +static inline int dirty_idx_to_flag(int idx)
> +{
> + return 1<< idx;
> +}
> +
> int cpu_memory_rw_debug(CPUState *env, target_ulong addr,
> uint8_t *buf, int len, int is_write);
>
> -#define VGA_DIRTY_FLAG 0x01
> -#define CODE_DIRTY_FLAG 0x02
> -#define MIGRATION_DIRTY_FLAG 0x08
> -
> /* read dirty bit (return 0 or 1) */
> static inline int cpu_physical_memory_is_dirty(ram_addr_t addr)
> {
> - return phys_ram_dirty[addr>> TARGET_PAGE_BITS] == 0xff;
> + unsigned long mask;
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + int offset = (addr>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> +
> + mask = 1UL<< offset;
> + return (phys_ram_dirty[MASTER_DIRTY_IDX][index]& mask) == mask;
> +}
> +
> +static inline void cpu_physical_memory_sync_master(ram_addr_t index)
> +{
> + if (phys_ram_dirty[MASTER_DIRTY_IDX][index]) {
> + phys_ram_dirty[VGA_DIRTY_IDX][index]
> + |= phys_ram_dirty[MASTER_DIRTY_IDX][index];
> + phys_ram_dirty[MIGRATION_DIRTY_IDX][index]
> + |= phys_ram_dirty[MASTER_DIRTY_IDX][index];
> + phys_ram_dirty[MASTER_DIRTY_IDX][index] = 0UL;
> + }
> +}
> +
> +static inline int cpu_physical_memory_get_dirty_flags(ram_addr_t addr)
> +{
> + unsigned long mask;
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + int offset = (addr>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> + int ret = 0, i;
> +
> + mask = 1UL<< offset;
> + cpu_physical_memory_sync_master(index);
> +
> + for (i = VGA_DIRTY_IDX; i<= MIGRATION_DIRTY_IDX; i++) {
> + if (phys_ram_dirty[i][index]& mask) {
> + ret |= dirty_idx_to_flag(i);
> + }
> + }
> +
> + return ret;
> +}
> +
> +static inline int cpu_physical_memory_get_dirty_idx(ram_addr_t addr,
> + int dirty_idx)
> +{
> + unsigned long mask;
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + int offset = (addr>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> +
> + mask = 1UL<< offset;
> + cpu_physical_memory_sync_master(index);
> + return (phys_ram_dirty[dirty_idx][index]& mask) == mask;
> }
>
> static inline int cpu_physical_memory_get_dirty(ram_addr_t addr,
> int dirty_flags)
> {
> - return phys_ram_dirty[addr>> TARGET_PAGE_BITS]& dirty_flags;
> + return cpu_physical_memory_get_dirty_idx(addr,
> + dirty_flag_to_idx(dirty_flags));
> }
>
> static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
> {
> - phys_ram_dirty[addr>> TARGET_PAGE_BITS] = 0xff;
> + unsigned long mask;
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + int offset = (addr>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> +
> + mask = 1UL<< offset;
> + phys_ram_dirty[MASTER_DIRTY_IDX][index] |= mask;
> +}
> +
> +static inline void cpu_physical_memory_set_dirty_range(ram_addr_t addr,
> + unsigned long mask)
> +{
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> +
> + phys_ram_dirty[MASTER_DIRTY_IDX][index] |= mask;
> +}
> +
> +static inline void cpu_physical_memory_set_dirty_flags(ram_addr_t addr,
> + int dirty_flags)
> +{
> + unsigned long mask;
> + ram_addr_t index = (addr>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + int offset = (addr>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> +
> + mask = 1UL<< offset;
> + phys_ram_dirty[MASTER_DIRTY_IDX][index] |= mask;
> +
> + if (dirty_flags& CODE_DIRTY_FLAG) {
> + phys_ram_dirty[CODE_DIRTY_IDX][index] |= mask;
> + }
> +}
> +
> +static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
> + unsigned long length,
> + int dirty_flags)
> +{
> + ram_addr_t addr = start, index;
> + unsigned long mask;
> + int offset, i;
> +
> + for (i = 0; i< length; i += TARGET_PAGE_SIZE) {
> + index = ((addr + i)>> TARGET_PAGE_BITS) / HOST_LONG_BITS;
> + offset = ((addr + i)>> TARGET_PAGE_BITS)& (HOST_LONG_BITS - 1);
> + mask = ~(1UL<< offset);
> + phys_ram_dirty[dirty_flag_to_idx(dirty_flags)][index]&= mask;
> + }
> }
>
> void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
> diff --git a/exec.c b/exec.c
> index b647512..bf8d703 100644
> --- a/exec.c
> +++ b/exec.c
> @@ -119,7 +119,7 @@ uint8_t *code_gen_ptr;
>
> #if !defined(CONFIG_USER_ONLY)
> int phys_ram_fd;
> -uint8_t *phys_ram_dirty;
> +unsigned long *phys_ram_dirty[NUM_DIRTY_IDX];
> uint8_t *bios_mem;
> static int in_migration;
>
> @@ -1947,7 +1947,7 @@ static void tlb_protect_code(ram_addr_t ram_addr)
> static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr,
> target_ulong vaddr)
> {
> - phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS] |= CODE_DIRTY_FLAG;
> + cpu_physical_memory_set_dirty_flags(ram_addr, CODE_DIRTY_FLAG);
> }
>
> static inline void tlb_reset_dirty_range(CPUTLBEntry *tlb_entry,
> @@ -1968,8 +1968,7 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
> {
> CPUState *env;
> unsigned long length, start1;
> - int i, mask, len;
> - uint8_t *p;
> + int i;
>
> start&= TARGET_PAGE_MASK;
> end = TARGET_PAGE_ALIGN(end);
> @@ -1977,11 +1976,7 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
> length = end - start;
> if (length == 0)
> return;
> - len = length>> TARGET_PAGE_BITS;
> - mask = ~dirty_flags;
> - p = phys_ram_dirty + (start>> TARGET_PAGE_BITS);
> - for(i = 0; i< len; i++)
> - p[i]&= mask;
> + cpu_physical_memory_mask_dirty_range(start, length, dirty_flags);
>
> /* we modify the TLB cache so that the dirty bit will be set again
> when accessing the range */
> @@ -2643,6 +2638,7 @@ extern const char *mem_path;
> ram_addr_t qemu_ram_alloc(ram_addr_t size)
> {
> RAMBlock *new_block;
> + int i;
>
> size = TARGET_PAGE_ALIGN(size);
> new_block = qemu_malloc(sizeof(*new_block));
> @@ -2667,10 +2663,14 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size)
> new_block->next = ram_blocks;
> ram_blocks = new_block;
>
> - phys_ram_dirty = qemu_realloc(phys_ram_dirty,
> - (last_ram_offset + size)>> TARGET_PAGE_BITS);
> - memset(phys_ram_dirty + (last_ram_offset>> TARGET_PAGE_BITS),
> - 0xff, size>> TARGET_PAGE_BITS);
> + for (i = MASTER_DIRTY_IDX; i< NUM_DIRTY_IDX; i++) {
> + phys_ram_dirty[i]
> + = qemu_realloc(phys_ram_dirty[i],
> + BITMAP_SIZE(last_ram_offset + size));
> + memset((uint8_t *)phys_ram_dirty[i] + BITMAP_SIZE(last_ram_offset),
> + 0xff, BITMAP_SIZE(last_ram_offset + size)
> + - BITMAP_SIZE(last_ram_offset));
> + }
>
> last_ram_offset += size;
>
> @@ -2833,16 +2833,16 @@ static void notdirty_mem_writeb(void *opaque, target_phys_addr_t ram_addr,
> uint32_t val)
> {
> int dirty_flags;
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> if (!(dirty_flags& CODE_DIRTY_FLAG)) {
> #if !defined(CONFIG_USER_ONLY)
> tb_invalidate_phys_page_fast(ram_addr, 1);
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> #endif
> }
> stb_p(qemu_get_ram_ptr(ram_addr), val);
> dirty_flags |= (0xff& ~CODE_DIRTY_FLAG);
> - phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS] = dirty_flags;
> + cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
> /* we remove the notdirty callback only if the code has been
> flushed */
> if (dirty_flags == 0xff)
> @@ -2853,16 +2853,16 @@ static void notdirty_mem_writew(void *opaque, target_phys_addr_t ram_addr,
> uint32_t val)
> {
> int dirty_flags;
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> if (!(dirty_flags& CODE_DIRTY_FLAG)) {
> #if !defined(CONFIG_USER_ONLY)
> tb_invalidate_phys_page_fast(ram_addr, 2);
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> #endif
> }
> stw_p(qemu_get_ram_ptr(ram_addr), val);
> dirty_flags |= (0xff& ~CODE_DIRTY_FLAG);
> - phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS] = dirty_flags;
> + cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
> /* we remove the notdirty callback only if the code has been
> flushed */
> if (dirty_flags == 0xff)
> @@ -2873,16 +2873,16 @@ static void notdirty_mem_writel(void *opaque, target_phys_addr_t ram_addr,
> uint32_t val)
> {
> int dirty_flags;
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> if (!(dirty_flags& CODE_DIRTY_FLAG)) {
> #if !defined(CONFIG_USER_ONLY)
> tb_invalidate_phys_page_fast(ram_addr, 4);
> - dirty_flags = phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS];
> + dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
> #endif
> }
> stl_p(qemu_get_ram_ptr(ram_addr), val);
> dirty_flags |= (0xff& ~CODE_DIRTY_FLAG);
> - phys_ram_dirty[ram_addr>> TARGET_PAGE_BITS] = dirty_flags;
> + cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
> /* we remove the notdirty callback only if the code has been
> flushed */
> if (dirty_flags == 0xff)
> @@ -3334,8 +3334,8 @@ void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
> /* invalidate code */
> tb_invalidate_phys_page_range(addr1, addr1 + l, 0);
> /* set dirty bit */
> - phys_ram_dirty[addr1>> TARGET_PAGE_BITS] |=
> - (0xff& ~CODE_DIRTY_FLAG);
> + cpu_physical_memory_set_dirty_flags(
> + addr1, (0xff& ~CODE_DIRTY_FLAG));
> }
> /* qemu doesn't execute guest code directly, but kvm does
> therefore flush instruction caches */
> @@ -3548,8 +3548,8 @@ void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len,
> /* invalidate code */
> tb_invalidate_phys_page_range(addr1, addr1 + l, 0);
> /* set dirty bit */
> - phys_ram_dirty[addr1>> TARGET_PAGE_BITS] |=
> - (0xff& ~CODE_DIRTY_FLAG);
> + cpu_physical_memory_set_dirty_flags(
> + addr1, (0xff& ~CODE_DIRTY_FLAG));
> }
> addr1 += l;
> access_len -= l;
> @@ -3685,8 +3685,8 @@ void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val)
> /* invalidate code */
> tb_invalidate_phys_page_range(addr1, addr1 + 4, 0);
> /* set dirty bit */
> - phys_ram_dirty[addr1>> TARGET_PAGE_BITS] |=
> - (0xff& ~CODE_DIRTY_FLAG);
> + cpu_physical_memory_set_dirty_flags(
> + addr1, (0xff& ~CODE_DIRTY_FLAG));
> }
> }
> }
> @@ -3754,8 +3754,8 @@ void stl_phys(target_phys_addr_t addr, uint32_t val)
> /* invalidate code */
> tb_invalidate_phys_page_range(addr1, addr1 + 4, 0);
> /* set dirty bit */
> - phys_ram_dirty[addr1>> TARGET_PAGE_BITS] |=
> - (0xff& ~CODE_DIRTY_FLAG);
> + cpu_physical_memory_set_dirty_flags(addr1,
> + (0xff& ~CODE_DIRTY_FLAG));
> }
> }
> }
>
next prev parent reply other threads:[~2010-04-22 19:27 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-21 5:57 [Qemu-devel] [RFC PATCH 00/20] Kemari for KVM v0.1 Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 01/20] Modify DIRTY_FLAG value and introduce DIRTY_IDX to use as indexes of bit-based phys_ram_dirty Yoshiaki Tamura
2010-04-22 19:26 ` Anthony Liguori [this message]
2010-04-23 2:09 ` [Qemu-devel] " Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 02/20] Introduce cpu_physical_memory_get_dirty_range() Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 03/20] Use cpu_physical_memory_set_dirty_range() to update phys_ram_dirty Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 04/20] Make QEMUFile buf expandable, and introduce qemu_realloc_buffer() and qemu_clear_buffer() Yoshiaki Tamura
2010-04-21 8:03 ` [Qemu-devel] " Stefan Hajnoczi
2010-04-21 8:27 ` Yoshiaki Tamura
2010-04-23 9:53 ` Avi Kivity
2010-04-23 9:59 ` Yoshiaki Tamura
2010-04-23 13:14 ` Avi Kivity
2010-04-26 10:43 ` Yoshiaki Tamura
2010-04-23 13:26 ` Anthony Liguori
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 05/20] Introduce put_vector() and get_vector to QEMUFile and qemu_fopen_ops() Yoshiaki Tamura
2010-04-22 19:28 ` [Qemu-devel] " Anthony Liguori
2010-04-23 3:37 ` Yoshiaki Tamura
2010-04-23 13:22 ` Anthony Liguori
2010-04-23 13:48 ` Avi Kivity
2010-05-03 9:32 ` Yoshiaki Tamura
2010-05-03 12:05 ` Anthony Liguori
2010-05-03 15:36 ` Yoshiaki Tamura
2010-05-03 16:07 ` Anthony Liguori
2010-04-26 10:43 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 06/20] Introduce iovec util functions, qemu_iovec_to_vector() and qemu_iovec_to_size() Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 07/20] Introduce qemu_put_vector() and qemu_put_vector_prepare() to use put_vector() in QEMUFile Yoshiaki Tamura
2010-04-22 19:29 ` [Qemu-devel] " Anthony Liguori
2010-04-23 4:02 ` Yoshiaki Tamura
2010-04-23 13:23 ` Anthony Liguori
2010-04-26 10:43 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 08/20] Introduce RAMSaveIO and use cpu_physical_memory_get_dirty_range() to check multiple dirty pages Yoshiaki Tamura
2010-04-22 19:31 ` [Qemu-devel] " Anthony Liguori
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 09/20] Introduce writev and read to FdMigrationState Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 10/20] Introduce skip_header parameter to qemu_loadvm_state() so that it can be called iteratively without reading the header Yoshiaki Tamura
2010-04-22 19:34 ` [Qemu-devel] " Anthony Liguori
2010-04-23 4:25 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 11/20] Introduce some socket util functions Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 12/20] Introduce fault tolerant VM transaction QEMUFile and ft_mode Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 13/20] Introduce util functions to control ft_transaction from savevm layer Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 14/20] Upgrade QEMU_FILE_VERSION from 3 to 4, and introduce qemu_savevm_state_all() Yoshiaki Tamura
2010-04-22 19:37 ` [Qemu-devel] " Anthony Liguori
2010-04-23 3:29 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 15/20] Introduce FT mode support to configure Yoshiaki Tamura
2010-04-22 19:38 ` [Qemu-devel] " Anthony Liguori
2010-04-23 3:09 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 16/20] Introduce event_tap fucntions and ft_tranx_ready() Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 17/20] Modify migrate_fd_put_ready() when ft_mode is on Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 18/20] Modify tcp_accept_incoming_migration() to handle ft_mode, and add a hack not to close fd when ft_mode is enabled Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 19/20] Insert do_event_tap() to virtio-{blk, net}, comment out assert() on cpu_single_env temporally Yoshiaki Tamura
2010-04-22 19:39 ` [Qemu-devel] " Anthony Liguori
2010-04-23 4:51 ` Yoshiaki Tamura
2010-04-21 5:57 ` [Qemu-devel] [RFC PATCH 20/20] Introduce -k option to enable FT migration mode (Kemari) Yoshiaki Tamura
2010-04-22 8:58 ` [Qemu-devel] [RFC PATCH 00/20] Kemari for KVM v0.1 Dor Laor
2010-04-22 10:35 ` Yoshiaki Tamura
2010-04-22 11:36 ` Takuya Yoshikawa
2010-04-22 12:35 ` Yoshiaki Tamura
2010-04-22 12:19 ` Dor Laor
2010-04-22 13:16 ` Yoshiaki Tamura
2010-04-22 20:33 ` Anthony Liguori
2010-04-23 1:53 ` Yoshiaki Tamura
2010-04-23 13:20 ` Anthony Liguori
2010-04-26 10:44 ` Yoshiaki Tamura
2010-04-22 20:38 ` Dor Laor
2010-04-23 5:17 ` Yoshiaki Tamura
2010-04-23 7:36 ` Fernando Luis Vázquez Cao
2010-04-25 21:52 ` Dor Laor
2010-04-22 16:15 ` Jamie Lokier
2010-04-23 0:20 ` Yoshiaki Tamura
2010-04-23 15:07 ` Jamie Lokier
2010-04-22 19:42 ` [Qemu-devel] " Anthony Liguori
2010-04-23 0:45 ` Yoshiaki Tamura
2010-04-23 13:10 ` Anthony Liguori
2010-04-23 13:24 ` Avi Kivity
2010-04-26 10:44 ` Yoshiaki Tamura
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4BD0A2F7.4050207@linux.vnet.ibm.com \
--to=aliguori@linux.vnet.ibm.com \
--cc=aliguori@us.ibm.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=ohmura.kei@lab.ntt.co.jp \
--cc=qemu-devel@nongnu.org \
--cc=tamura.yoshiaki@lab.ntt.co.jp \
--cc=yoshikawa.takuya@oss.ntt.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).