From patchwork Tue Apr 9 00:37:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sasha Levin X-Patchwork-Id: 2412491 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id E9CF4DFB78 for ; Tue, 9 Apr 2013 00:38:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936604Ab3DIAiL (ORCPT ); Mon, 8 Apr 2013 20:38:11 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:39448 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760497Ab3DIAiK (ORCPT ); Mon, 8 Apr 2013 20:38:10 -0400 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r390c0vJ020279 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 9 Apr 2013 00:38:01 GMT Received: from aserz7022.oracle.com (aserz7022.oracle.com [141.146.126.231]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r390bx6a026703 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Tue, 9 Apr 2013 00:38:00 GMT Received: from abhmt119.oracle.com (abhmt119.oracle.com [141.146.116.71]) by aserz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r390bxOg026700; Tue, 9 Apr 2013 00:37:59 GMT Received: from lappy.hsd1.ma.comcast.net. (/50.133.228.71) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Mon, 08 Apr 2013 17:37:59 -0700 From: Sasha Levin To: penberg@kernel.org Cc: asias.hejun@gmail.com, kvm@vger.kernel.org, mst@redhat.com, rusty@rustcorp.com.au, Sasha Levin Subject: [PATCH 1/3] kvm tools: Increase amount of possible interrupts per PCI device Date: Mon, 8 Apr 2013 20:37:35 -0400 Message-Id: <1365467857-15928-1-git-send-email-sasha.levin@oracle.com> X-Mailer: git-send-email 1.8.1.5 X-Source-IP: acsinet22.oracle.com [141.146.126.238] Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org We've limited the amount of interrupts per PCI device to be the maximum amount of VQs. Now that the maximum amount of VQs has increased, time to increase this as well. Signed-off-by: Sasha Levin --- tools/kvm/include/kvm/virtio-pci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kvm/include/kvm/virtio-pci.h b/tools/kvm/include/kvm/virtio-pci.h index 6d9a558..9b06392 100644 --- a/tools/kvm/include/kvm/virtio-pci.h +++ b/tools/kvm/include/kvm/virtio-pci.h @@ -6,7 +6,7 @@ #include -#define VIRTIO_PCI_MAX_VQ 3 +#define VIRTIO_PCI_MAX_VQ 32 #define VIRTIO_PCI_MAX_CONFIG 1 struct kvm;