From owner-cvs-src-old@FreeBSD.ORG Thu May 14 14:57:30 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA1C81065686 for ; Thu, 14 May 2009 14:57:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B511B8FC24 for ; Thu, 14 May 2009 14:57:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4EEvUiY027700 for ; Thu, 14 May 2009 14:57:30 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4EEvUoa027699 for cvs-src-old@freebsd.org; Thu, 14 May 2009 14:57:30 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200905141457.n4EEvUoa027699@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 14 May 2009 14:57:13 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-pci.h src/sys/dev/ata/chipsets ata-acard.c ata-promise.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 May 2009 14:57:31 -0000 jhb 2009-05-14 14:57:13 UTC FreeBSD src repository Modified files: sys/dev/ata ata-pci.h sys/dev/ata/chipsets ata-acard.c ata-promise.c Log: SVN rev 192105 on 2009-05-14 14:57:13Z by jhb - Add a void pointer to the ata-pci controller softc to allow chipset-specific code to attach chipset-specific data. - Use chipset-specific data in the acard and promise chipsets rather than changing the ivars of ATA PCI devices. ivars are reserved for use by the parent bus driver and are _not_ available for use by devices directly. This fixes a panic during sysctl -a with certain Promise controllers with ACPI enabled. Reviewed by: mav Tested by: Magnus Kling (kingfon @ gmail) (on 7) MFC after: 3 days Revision Changes Path 1.107 +1 -0 src/sys/dev/ata/ata-pci.h 1.4 +21 -17 src/sys/dev/ata/chipsets/ata-acard.c 1.9 +4 -4 src/sys/dev/ata/chipsets/ata-promise.c