Commit 93f79948 authored by Simon Que's avatar Simon Que Committed by Hari Kanigeri

Syslink-Fixed platform heapbuf cleanup order

Changed the order of heapbuf cleanup operations in
platform_stop_callback.  The heapbuf gate handles are deleted after
heapbuf is closed.  Otherwise the heapbuf close function will hang when
attempting to enter the gate.
Signed-off-by: default avatarSimon Que <sque@ti.com>
parent 6ae49ae7
......@@ -1278,6 +1278,14 @@ void platform_stop_callback(void *arg)
status);
}
if (index == SMHEAP_SRINDEX_APPM3)
status = heapbuf_close(platform_heap_handle_appm3);
else
status = heapbuf_close(platform_heap_handle_sysm3);
if (status < 0) {
printk(KERN_ERR "platform_stop_callback : "
"heapbuf_close failed [0x%x]", status);
}
if (index == SMHEAP_SRINDEX_APPM3)
status = gatepeterson_close(
&platform_heap_gate_handle_appm3);
......@@ -1289,14 +1297,6 @@ void platform_stop_callback(void *arg)
"gatepeterson_close failed [0x%x]", status);
}
if (index == SMHEAP_SRINDEX_APPM3)
status = heapbuf_close(platform_heap_handle_appm3);
else
status = heapbuf_close(platform_heap_handle_sysm3);
if (status < 0) {
printk(KERN_ERR "platform_stop_callback : "
"heapbuf_close failed [0x%x]", status);
}
}
if (pc_params.use_notify) {
......
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