From owner-freebsd-net@FreeBSD.ORG Tue Jun 18 08:17:00 2013 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 935AF7C3; Tue, 18 Jun 2013 08:17:00 +0000 (UTC) (envelope-from carlopmart@gmail.com) Received: from mail-we0-x234.google.com (mail-we0-x234.google.com [IPv6:2a00:1450:400c:c03::234]) by mx1.freebsd.org (Postfix) with ESMTP id 04B7B1484; Tue, 18 Jun 2013 08:16:59 +0000 (UTC) Received: by mail-we0-f180.google.com with SMTP id w56so3158940wes.11 for ; Tue, 18 Jun 2013 01:16:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=ld1hquJ7QDMPajlJft4e8HYwEY8FrrCopiZ4uzeLD2g=; b=sLscnv3/5HcjWguTUfrpzfen2UQC8TyX1LsyjnGerk/sz4p1MCyyC2xWg9uBuJNM6Z 5TuRlqiwdKqxKLgf4hAMTAFIF8Inb30zYa+pKA9kHG3wP652IsI/4xjQNxNZqANaVs3w u+5wMY3mJiHuRR1GzbXzW2APf7dZT6xK9wf6NqQ4TpItaqiYq006x9M+EUQIIymzKi01 6GQjb0iVsAhevRvhl2KcFdnLNP0EdrR7e5pFRH7LP+2ADnpMNvSyMuV6bFhUOQRXic0w SbZyqH7ZBacfQNZ3dAq9yBKgfdyYObzVfgHVumYNvhZ4fRLu8CDL8JDtYn5pzp8gPA0M P5xQ== MIME-Version: 1.0 X-Received: by 10.180.74.162 with SMTP id u2mr1215919wiv.36.1371543418981; Tue, 18 Jun 2013 01:16:58 -0700 (PDT) Received: by 10.194.76.178 with HTTP; Tue, 18 Jun 2013 01:16:58 -0700 (PDT) In-Reply-To: References: Date: Tue, 18 Jun 2013 08:16:58 +0000 Message-ID: Subject: Fwd: Avoid sharing interrupts in FreeBSD under ESXi From: "C. L. Martinez" To: freebsd-net@freebsd.org, freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 08:17:00 -0000 Hi all, First, sorry for the cross-posting. I have installed a FreeBSD 8.4 vm under an ESXi 5.1 U1 server. All works ok, except for interrupt usage between mpt and nic interfaces: root@fbsdtst:~ # vmstat -i interrupt total rate irq1: atkbd0 6 0 irq6: fdc0 9 0 irq16: em2 mpt2 945924 1 irq17: em3 em6 2124484 4 irq18: em0 em4 em7+ 5950584 11 irq19: em1 em5 em8+ 2317830055 4499 cpu0: timer 206119496 400 Total 2532970558 4916 I have enabled the following options in loader.conf: hw.pci.enable_msi="0" hw.pci.enable_msix="0" without a result. Is it possible to avoid to share interrupts in FreeBSD when it is running as a vm? Exists some kernel option to resolve this (via sysctl or compiling a new kernel)? Thanks.