From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alessandro Bono Subject: [PATCH] increase MAX_NICS value Date: Fri, 09 Jul 2010 17:39:17 +0200 Message-ID: <1278689957.9187.12.camel@champagne> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit To: kvm@vger.kernel.org Return-path: Received: from mail-wy0-f174.google.com ([74.125.82.174]:39043 "EHLO mail-wy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754816Ab0GIPqy (ORCPT ); Fri, 9 Jul 2010 11:46:54 -0400 Received: by wyf23 with SMTP id 23so1645066wyf.19 for ; Fri, 09 Jul 2010 08:46:53 -0700 (PDT) Sender: kvm-owner@vger.kernel.org List-ID: Hi all max number of allowed nics per vm is hardcoded on net.h to 8. This value it's too low in situation with big network, increase to 24 this should be safe as mentioned on this thread http://kerneltrap.org/mailarchive/linux-kvm/2009/1/29/4848304/thread Signed-off-by: Alessandro Bono --- net.h.old 2010-07-09 17:30:39.542170103 +0200 +++ net.h 2010-07-09 17:30:48.842166029 +0200 @@ -121,7 +121,7 @@ /* NIC info */ -#define MAX_NICS 8 +#define MAX_NICS 24 struct NICInfo { uint8_t macaddr[6]; -- Cordiali Saluti Alessandro Bono