From owner-freebsd-questions@FreeBSD.ORG Tue Jun 18 05:45:52 2013 Return-Path: Delivered-To: freebsd-questions@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 D6372CBE for ; Tue, 18 Jun 2013 05:45:52 +0000 (UTC) (envelope-from carlopmart@gmail.com) Received: from mail-wg0-x233.google.com (mail-wg0-x233.google.com [IPv6:2a00:1450:400c:c00::233]) by mx1.freebsd.org (Postfix) with ESMTP id 7228A19A6 for ; Tue, 18 Jun 2013 05:45:52 +0000 (UTC) Received: by mail-wg0-f51.google.com with SMTP id e11so3008525wgh.6 for ; Mon, 17 Jun 2013 22:45:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Zp+5Xp+eT/M2wGqcZmqg73YklotpedRU182oOjOZnBs=; b=iw/RhvccWBK6fBJP0XK3p1qGBb36mdHFhZt5wo0OFRj6Wembx7SntY0LRSpm1b7TX/ 282bxllwirx11UmsmF35XP6voFqDt0fS1/XW8DnCHM8r20TdlgL+Ob8M8rhKZLwklqua +IABgTkSw0GJENENw2LpDwaGsAttbdGvSho7xi3ZkD6QopnWPeip4bTteOrwjlUM7enI XUJZBklZbJWIUtIqjCOYE3KT3ZsGacrEuMGWgu5ck73SA3CoZntXEas8aH6WgLcQKk3y UspWZg05OXAkYqfYHk4hK6Mucu9DT3vVcUwZlGiwdFPEl/QvqCyiVfIzHIi2X2dtK+tC LvOA== MIME-Version: 1.0 X-Received: by 10.180.100.35 with SMTP id ev3mr6689974wib.12.1371534351661; Mon, 17 Jun 2013 22:45:51 -0700 (PDT) Received: by 10.194.76.178 with HTTP; Mon, 17 Jun 2013 22:45:51 -0700 (PDT) Date: Tue, 18 Jun 2013 05:45:51 +0000 Message-ID: Subject: Avoid sharing interrupts in FreeBSD under ESXi From: "C. L. Martinez" To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 05:45:52 -0000 HI all, 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.