svn commit: r249073 - stable/7/sys/contrib/dev/acpica

Sean Bruno sbruno at FreeBSD.org
Wed Apr 3 23:11:16 UTC 2013


Author: sbruno
Date: Wed Apr  3 23:11:15 2013
New Revision: 249073
URL: http://svnweb.freebsd.org/changeset/base/249073

Log:
  Resolve kernel panic that occurs on callback from sysctl when setting
  hw.ciss.expose_hidden_physical=1 on a HP ProLiant DL360 G6 (and possibly
  others) due to mishandling of error value in acpica on stable/7
  
  Note that this is a direct commit as this code has been fixed in stable/8
  (8.4 included) and higher release for quite some time.
  
  PR:	kern/152250
  Submitted by:	Loic Pefferkorn <loic-freebsd at loicp.eu>
  Reviewed by:	avg@

Modified:
  stable/7/sys/contrib/dev/acpica/nsxfname.c

Modified: stable/7/sys/contrib/dev/acpica/nsxfname.c
==============================================================================
--- stable/7/sys/contrib/dev/acpica/nsxfname.c	Wed Apr  3 22:37:40 2013	(r249072)
+++ stable/7/sys/contrib/dev/acpica/nsxfname.c	Wed Apr  3 23:11:15 2013	(r249073)
@@ -361,6 +361,7 @@ AcpiGetObjectInfo (
     if (!Node)
     {
         (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
+        Status = AE_BAD_PARAMETER;
         goto Cleanup;
     }
 


More information about the svn-src-stable-7 mailing list