From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37366) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNOcB-00069H-Rz for qemu-devel@nongnu.org; Mon, 16 Feb 2015 11:33:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNOc5-00085B-9R for qemu-devel@nongnu.org; Mon, 16 Feb 2015 11:33:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33574) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNOc5-00084u-38 for qemu-devel@nongnu.org; Mon, 16 Feb 2015 11:33:37 -0500 From: Gerd Hoffmann Date: Mon, 16 Feb 2015 17:33:23 +0100 Message-Id: <1424104405-18874-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1424104405-18874-1-git-send-email-kraxel@redhat.com> References: <1424104405-18874-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/4] virtio-pci: make QEMU_VIRTIO_PCI_QUEUE_MEM_MULT smaller List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Anthony Liguori , mst@redhat.com Signed-off-by: Gerd Hoffmann --- hw/virtio/virtio-pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c index 6c0c650..cd7c777 100644 --- a/hw/virtio/virtio-pci.c +++ b/hw/virtio/virtio-pci.c @@ -975,7 +975,7 @@ static void virtio_pci_add_mem_cap(VirtIOPCIProxy *proxy, cap->cap_len - PCI_CAP_FLAGS); } -#define QEMU_VIRTIO_PCI_QUEUE_MEM_MULT 0x10000 +#define QEMU_VIRTIO_PCI_QUEUE_MEM_MULT 0x1000 static uint64_t virtio_pci_common_read(void *opaque, hwaddr addr, unsigned size) -- 1.8.3.1