NetBSD Problem Report #46877

From Wolfgang.Stukenbrock@nagler-company.com  Thu Aug 30 15:19:48 2012
Return-Path: <Wolfgang.Stukenbrock@nagler-company.com>
Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66])
	by www.NetBSD.org (Postfix) with ESMTP id C80F163B86D
	for <gnats-bugs@gnats.NetBSD.org>; Thu, 30 Aug 2012 15:19:47 +0000 (UTC)
Message-Id: <20120830151936.943D31E80A9@test-s0.nagler-company.com>
Date: Thu, 30 Aug 2012 17:19:36 +0200 (CEST)
From: Wolfgang.Stukenbrock@nagler-company.com
Reply-To: Wolfgang.Stukenbrock@nagler-company.com
To: gnats-bugs@gnats.NetBSD.org
Subject: missing device definition in mfi-driver for SAS 9261-8i
X-Send-Pr-Version: 3.95

>Number:         46877
>Category:       kern
>Synopsis:       missing device definition in mfi-driver for SAS 9261-8i
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    jnemeth
>State:          closed
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Thu Aug 30 15:20:00 +0000 2012
>Closed-Date:    Sun Sep 30 19:52:43 +0000 2012
>Last-Modified:  Sun Sep 30 19:52:43 +0000 2012
>Originator:     Wolfgang Stukenbrock
>Release:        NetBSD 5_1_STABLE - also -current
>Organization:
Dr. Nagler & Company GmbH
>Environment:


System: NetBSD test-s0 4.0 NetBSD 4.0 (NSW-WS) #0: Tue Aug 17 17:28:09 CEST 2010 wgstuken@test-s0:/usr/src/sys/arch/amd64/compile/NSW-WS amd64
Architecture: x86_64
Machine: amd64
>Description:
	In src/sys/dev/pci/mfi_pci.c there is a subdevice definition for the SAS 9261-8i
	controler missing. The controler is reported by vendor and procuct id in hex only.
>How-To-Repeat:
	Install such a controler and boot the system with mfi-driver enabled.
>Fix:
The following patch will add the missing defintion, so that it is printed correctly:

--- mfi_pci.c   2012/08/30 15:07:58     1.4
+++ mfi_pci.c   2012/08/30 15:08:57
@@ -78,6 +78,7 @@

 static const struct mfi_pci_subtype mfi_gen2_subtypes[] = {
        { PCI_VENDOR_SYMBIOS,   0x9261,         "SAS 9260-8i" },
+       { PCI_VENDOR_SYMBIOS,   0x9263,         "SAS 9261-8i" },
        { PCI_VENDOR_IBM,       0x03c7,         "IBM ServeRAID M5014 SAS/SATA" },
        { PCI_VENDOR_DELL,      0x1f15,         "Dell PERC H800 Adapter" },
        { PCI_VENDOR_DELL,      0x1f16,         "Dell PERC H700 Adapter" },

>Release-Note:

>Audit-Trail:

Responsible-Changed-From-To: kern-bug-people->jnemeth
Responsible-Changed-By: jnemeth@NetBSD.org
Responsible-Changed-When: Fri, 31 Aug 2012 05:23:18 +0000
Responsible-Changed-Why:
I'm working on it.


State-Changed-From-To: open->analyzed
State-Changed-By: jnemeth@NetBSD.org
State-Changed-When: Fri, 31 Aug 2012 05:23:18 +0000
State-Changed-Why:
Patch committed, but need to do pullups.


From: "John Nemeth" <jnemeth@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/46877 CVS commit: src/sys/dev/pci
Date: Fri, 31 Aug 2012 05:22:17 +0000

 Module Name:	src
 Committed By:	jnemeth
 Date:		Fri Aug 31 05:22:17 UTC 2012

 Modified Files:
 	src/sys/dev/pci: mfi_pci.c

 Log Message:
 PR/46877 - Wolfgang Stukenbrock -- missing definition for Symbios SAS 9261-8i


 To generate a diff of this commit:
 cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/mfi_pci.c

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

From: "Jeff Rizzo" <riz@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/46877 CVS commit: [netbsd-6] src/sys/dev/pci
Date: Mon, 3 Sep 2012 19:13:35 +0000

 Module Name:	src
 Committed By:	riz
 Date:		Mon Sep  3 19:13:35 UTC 2012

 Modified Files:
 	src/sys/dev/pci [netbsd-6]: mfi_pci.c

 Log Message:
 Pull up following revision(s) (requested by jnemeth in ticket #536):
 	sys/dev/pci/mfi_pci.c: revision 1.17
 PR/46877 - Wolfgang Stukenbrock -- missing definition for Symbios SAS 9261-8i


 To generate a diff of this commit:
 cvs rdiff -u -r1.12.16.2 -r1.12.16.3 src/sys/dev/pci/mfi_pci.c

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

From: "Manuel Bouyer" <bouyer@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/46877 CVS commit: [netbsd-5] src/sys/dev/pci
Date: Sun, 30 Sep 2012 18:03:43 +0000

 Module Name:	src
 Committed By:	bouyer
 Date:		Sun Sep 30 18:03:43 UTC 2012

 Modified Files:
 	src/sys/dev/pci [netbsd-5]: mfi_pci.c

 Log Message:
 Pull up following revision(s) (requested by jnemeth in ticket #1795):
 	sys/dev/pci/mfi_pci.c: revision 1.17 via patch
 PR/46877 - Wolfgang Stukenbrock -- missing definition for Symbios SAS 9261-8i


 To generate a diff of this commit:
 cvs rdiff -u -r1.5.14.1 -r1.5.14.2 src/sys/dev/pci/mfi_pci.c

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

State-Changed-From-To: analyzed->closed
State-Changed-By: jnemeth@NetBSD.org
State-Changed-When: Sun, 30 Sep 2012 19:52:43 +0000
State-Changed-Why:
Pullups completed.  Thanks for the PR!


>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.39 2013/11/01 18:47:49 spz Exp $
$NetBSD: gnats_config.sh,v 1.8 2006/05/07 09:23:38 tsutsui Exp $
Copyright © 1994-2007 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.