Revision c80f5b31f3c55a197f5323b93d1e3553429a427e authored by Julia Lawall on 15 March 2012, 08:32:05 UTC, committed by Len Brown on 30 March 2012, 07:30:34 UTC
The function acpi_processor_add is stored in the ops.add field of a
acpi_driver structure.  This function is then called in
acpi_bus_driver_init.  On failure, this function clears the field
device->driver_data, but does not free its contents.  Thus the free has to
be done by the add function.  In acpi_processor_add, the corresponding
value is pr.  This value is currently freed on failure before storing it in
device->driver_data, but not after.  This free is added in the error
handling code at the end of the function.  The per_cpu variable
processors is also cleared so that it does not refer to a dangling pointer.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Acked-by: Deepthi Dharwar <deepthi@linux.vnet.ibm.com>
Signed-off-by: Len Brown <len.brown@intel.com>
1 parent c6436f5
History
File Mode Size
Kconfig -rw-r--r-- 936 bytes
Makefile -rw-r--r-- 174 bytes
autofs_i.h -rw-r--r-- 9.0 KB
dev-ioctl.c -rw-r--r-- 18.1 KB
expire.c -rw-r--r-- 13.9 KB
init.c -rw-r--r-- 1.2 KB
inode.c -rw-r--r-- 8.1 KB
root.c -rw-r--r-- 23.4 KB
symlink.c -rw-r--r-- 776 bytes
waitq.c -rw-r--r-- 14.3 KB

back to top