Commit f4156d1c authored by Carl Love's avatar Carl Love Committed by Paul Mackerras

powerpc/cell/oprofile: Avoid double vfree of profile buffer

If an error occurs on opcontrol start, the event and per cpu buffers
are released.  If later opcontrol shutdown is called then the free
function will be called again to free buffers that no longer
exist.  This results in a kernel oops.  The following changes
prevent the call to delete buffers that don't exist.
Signed-off-by: default avatarCarl Love <carll@us.ibm.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarRobert Richter <robert.richter@amd.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 2bb2e1db
......@@ -38,8 +38,10 @@ void free_cpu_buffers(void)
{
int i;
for_each_online_cpu(i)
for_each_online_cpu(i) {
vfree(per_cpu(cpu_buffer, i).buffer);
per_cpu(cpu_buffer, i).buffer = NULL;
}
}
int alloc_cpu_buffers(void)
......
......@@ -93,6 +93,8 @@ int alloc_event_buffer(void)
void free_event_buffer(void)
{
vfree(event_buffer);
event_buffer = NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment