|
@@ -36,8 +36,7 @@ void wlan_sm_save_history(struct wlan_sm *sm,
|
|
|
p_memento = &p_sm_history->data[p_sm_history->index];
|
|
|
p_sm_history->index++;
|
|
|
|
|
|
- if (p_sm_history->index >= WLAN_SM_ENGINE_HISTORY_SIZE)
|
|
|
- p_sm_history->index = 0;
|
|
|
+ p_sm_history->index %= WLAN_SM_ENGINE_HISTORY_SIZE;
|
|
|
|
|
|
qdf_spin_unlock_bh(&p_sm_history->sm_history_lock);
|
|
|
|
|
@@ -51,6 +50,7 @@ void wlan_sm_save_history(struct wlan_sm *sm,
|
|
|
void wlan_sm_history_init(struct wlan_sm *sm)
|
|
|
{
|
|
|
qdf_spinlock_create(&sm->history.sm_history_lock);
|
|
|
+ qdf_mem_zero(&sm->history, sizeof(struct wlan_sm_history));
|
|
|
}
|
|
|
|
|
|
void wlan_sm_history_delete(struct wlan_sm *sm)
|
|
@@ -68,36 +68,51 @@ static void wlan_sm_print_history_entry(struct wlan_sm *sm,
|
|
|
if (ent->event_type < sm->num_event_names)
|
|
|
event_name = sm->event_names[ent->event_type];
|
|
|
|
|
|
- sm_engine_nofl_info(" (%d) trace_type: %d, event:%s[%d]", i,
|
|
|
- ent->trace_type,
|
|
|
- event_name ? event_name : "UNKNOWN_EVENT",
|
|
|
- ent->event_type);
|
|
|
+ if (!ent->trace_type)
|
|
|
+ return;
|
|
|
+
|
|
|
+ sm_engine_nofl_err(
|
|
|
+ "|%6d |%11d |%23s[%3d] |%19s[%2d] |%19s[%2d] |",
|
|
|
+ i, ent->trace_type,
|
|
|
+ event_name ? event_name : "UNKNOWN_EVENT",
|
|
|
+ ent->event_type,
|
|
|
+ sm->state_info[ent->initial_state].name,
|
|
|
+ ent->initial_state,
|
|
|
+ sm->state_info[ent->final_state].name,
|
|
|
+ ent->final_state);
|
|
|
} else {
|
|
|
- sm_engine_nofl_info(" (%d) trace_type: %d, event: %d", i,
|
|
|
- ent->trace_type, ent->event_type);
|
|
|
+ sm_engine_nofl_err(
|
|
|
+ "|%6d |%11d |%28d |%19s[%2d] |%19s[%2d] |",
|
|
|
+ i, ent->trace_type,
|
|
|
+ ent->event_type,
|
|
|
+ sm->state_info[ent->initial_state].name,
|
|
|
+ ent->initial_state,
|
|
|
+ sm->state_info[ent->final_state].name,
|
|
|
+ ent->final_state);
|
|
|
}
|
|
|
-
|
|
|
- sm_engine_nofl_info(" (%d) initial state :%s[%d], final state: %s[%d]",
|
|
|
- i, sm->state_info[ent->initial_state].name,
|
|
|
- ent->initial_state,
|
|
|
- sm->state_info[ent->final_state].name,
|
|
|
- ent->final_state);
|
|
|
}
|
|
|
|
|
|
void wlan_sm_print_history(struct wlan_sm *sm)
|
|
|
{
|
|
|
struct wlan_sm_history *p_sm_history = &sm->history;
|
|
|
- uint16_t i;
|
|
|
+ uint8_t i;
|
|
|
+ uint8_t idx;
|
|
|
|
|
|
/*
|
|
|
* History saved in circular buffer.
|
|
|
* Save a pointer to next write location and increment pointer.
|
|
|
*/
|
|
|
qdf_spin_lock_bh(&p_sm_history->sm_history_lock);
|
|
|
- sm_engine_nofl_info("%s: SM History index is %d",
|
|
|
- sm->name, p_sm_history->index);
|
|
|
- for (i = 0; i < WLAN_SM_ENGINE_HISTORY_SIZE; i++)
|
|
|
- wlan_sm_print_history_entry(sm, &p_sm_history->data[i], i);
|
|
|
+
|
|
|
+ sm_engine_nofl_err("|%6s |%11s |%28s |%23s |%23s |", "Index",
|
|
|
+ "Trace Type", "Event",
|
|
|
+ "Initial State", "Final State");
|
|
|
+
|
|
|
+ for (i = 0; i < WLAN_SM_ENGINE_HISTORY_SIZE; i++) {
|
|
|
+ idx = (p_sm_history->index + i) % WLAN_SM_ENGINE_HISTORY_SIZE;
|
|
|
+ wlan_sm_print_history_entry(
|
|
|
+ sm, &p_sm_history->data[idx], idx);
|
|
|
+ }
|
|
|
|
|
|
qdf_spin_unlock_bh(&p_sm_history->sm_history_lock);
|
|
|
}
|