svn commit: r240344 - head/sys/dev/acpica

Andriy Gapon avg at FreeBSD.org
Tue Sep 11 06:26:21 UTC 2012


Author: avg
Date: Tue Sep 11 06:26:20 2012
New Revision: 240344
URL: http://svn.freebsd.org/changeset/base/240344

Log:
  acpi_cpu: free result of device_get_children
  
  MFC after:	1 week

Modified:
  head/sys/dev/acpica/acpi_cpu.c

Modified: head/sys/dev/acpica/acpi_cpu.c
==============================================================================
--- head/sys/dev/acpica/acpi_cpu.c	Tue Sep 11 06:25:10 2012	(r240343)
+++ head/sys/dev/acpica/acpi_cpu.c	Tue Sep 11 06:26:20 2012	(r240344)
@@ -862,6 +862,7 @@ acpi_cpu_startup(void *arg)
     cpu_cx_lowest_lim = 0;
     cpu_disable_idle = FALSE;
     cpu_idle_hook = acpi_cpu_idle;
+    free(cpu_devices, M_TEMP);
 }
 
 static void


More information about the svn-src-head mailing list