From owner-svn-src-all@FreeBSD.ORG Wed Aug 6 14:47:39 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C65C025D for ; Wed, 6 Aug 2014 14:47:39 +0000 (UTC) Received: from smtp.mullet.se (smtp.mullet.se [94.247.168.122]) by mx1.freebsd.org (Postfix) with ESMTP id 86A4E25CB for ; Wed, 6 Aug 2014 14:47:39 +0000 (UTC) Received: from Martin-Nilssons-MacBook-Pro.local (m83-182-90-252.cust.tele2.se [83.182.90.252]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by smtp.mullet.se (Postfix) with ESMTPSA id 5277D627001D for ; Wed, 6 Aug 2014 16:41:03 +0200 (CEST) Message-ID: <53E23E7F.8090303@gneto.com> Date: Wed, 06 Aug 2014 16:41:03 +0200 From: Martin Nilsson User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: svn-src-all@freebsd.org Subject: Re: svn commit: r267451 - head/sys/dev/mfi References: <201406132233.s5DMXgep063848@svn.freebsd.org> In-Reply-To: <201406132233.s5DMXgep063848@svn.freebsd.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 14:47:39 -0000 Can anybody MFC this to 10-STABLE so we can use the mrsas driver with the adapters that are supported? mfi is sometimes very slow with the 12Gbit SAS cards. On 2014-06-14 00:33, Xin LI wrote: > Author: delphij > Date: Fri Jun 13 22:33:41 2014 > New Revision: 267451 > URL: http://svnweb.freebsd.org/changeset/base/267451 > > Log: > Correct variable for loader tunable variable hw.mfi.mrsas_enable. > > Submitted by: Sascha Wildner (DragonFly) > MFC after: 3 days > > Modified: > head/sys/dev/mfi/mfi_pci.c > > Modified: head/sys/dev/mfi/mfi_pci.c > ============================================================================== > --- head/sys/dev/mfi/mfi_pci.c Fri Jun 13 21:30:40 2014 (r267450) > +++ head/sys/dev/mfi/mfi_pci.c Fri Jun 13 22:33:41 2014 (r267451) > @@ -113,7 +113,7 @@ SYSCTL_INT(_hw_mfi, OID_AUTO, msi, CTLFL > "Enable use of MSI interrupts"); > > static int mfi_mrsas_enable = 0; > -TUNABLE_INT("hw.mfi.mrsas_enable", &mfi_msi); > +TUNABLE_INT("hw.mfi.mrsas_enable", &mfi_mrsas_enable); > SYSCTL_INT(_hw_mfi, OID_AUTO, mrsas_enable, CTLFLAG_RDTUN, &mfi_mrsas_enable, > 0, "Allow mrasas to take newer cards"); > > _______________________________________________ > svn-src-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-all > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"