瀏覽代碼

qcacmn: Dump scheduler thread stack for watchdog bite

In the event of a scheduler thread watchdog bite, dump the scheduler
thread stack trace to aid in debugging.

Change-Id: I222556c7cb01985abe20b04a9383fc6c6d0724fc
CRs-Fixed: 2091875
Dustin Brown 7 年之前
父節點
當前提交
7b32946958
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      scheduler/src/scheduler_api.c

+ 3 - 1
scheduler/src/scheduler_api.c

@@ -71,7 +71,7 @@ static QDF_STATUS scheduler_close(struct scheduler_ctx *sched_ctx)
 
 	/* Wait for scheduler thread to exit */
 	qdf_wait_single_event(&sched_ctx->sch_shutdown, 0);
-	sched_ctx->sch_thread = 0;
+	sched_ctx->sch_thread = NULL;
 
 	/* Clean up message queues of MC thread */
 	scheduler_flush_mqs(sched_ctx);
@@ -102,6 +102,8 @@ static void scheduler_watchdog_timeout(void *arg)
 	struct scheduler_ctx *sched = arg;
 
 	scheduler_watchdog_notify(sched);
+	if (sched->sch_thread)
+		qdf_print_thread_trace(sched->sch_thread);
 
 	/* avoid crashing during shutdown */
 	if (qdf_test_bit(MC_SHUTDOWN_EVENT_MASK, &sched->sch_event_flag))