Re: [Qemu-devel] [PATCH] hw/block/nvme: Add doorbell buffer config support

2018-04-30 Thread Paolo Bonzini
Ping... Keith, can you review this? Thanks, Paolo On 05/03/2018 20:49, Huaicheng Li wrote: > This patch adds Doorbell Buffer Config support (NVMe 1.3) to QEMU NVMe, > based on Mihai Rusu / Lin Ming's Google vendor extension patch [1]. The > basic idea of this optimization is to use a shared

[Qemu-devel] [PATCH] hw/block/nvme: Add doorbell buffer config support

2018-03-05 Thread Huaicheng Li
This patch adds Doorbell Buffer Config support (NVMe 1.3) to QEMU NVMe, based on Mihai Rusu / Lin Ming's Google vendor extension patch [1]. The basic idea of this optimization is to use a shared buffer between guest OS and QEMU to reduce # of MMIO operations (doorbell writes). This patch ports