diff options
| author | Poddar, Siddarth <siddpodd@codeaurora.org> | 2017-08-22 16:34:06 +0530 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-08-30 06:34:38 -0700 |
| commit | d7ea6fa1320282990e459ddf57a50984f416d65a (patch) | |
| tree | ef5190441a09b34fd937379db9c792526e9fb775 /core/utils | |
| parent | 0c80e9a3016f4dc21e36e834e727b0385e991d21 (diff) | |
qcacld-3.0: Send data stall status diag event
Add support in data stall detection event to send
diag event to QXDM.
CRs-Fixed: 2086176
Change-Id: Ifad03e0882ccce09a7bf90c8e560f24146690895
Diffstat (limited to 'core/utils')
| -rw-r--r-- | core/utils/host_diag_log/inc/host_diag_core_event.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/utils/host_diag_log/inc/host_diag_core_event.h b/core/utils/host_diag_log/inc/host_diag_core_event.h index 6080154131f7..08ed1cb829ee 100644 --- a/core/utils/host_diag_log/inc/host_diag_core_event.h +++ b/core/utils/host_diag_log/inc/host_diag_core_event.h @@ -462,14 +462,32 @@ enum host_sta_kickout_events { ------------------------------------------------------------------------*/ /** * enum host_datastall_events - Enum containing datastall subtype + * @DATA_STALL_NONE: Indicate no data stall + * @FW_VDEV_PAUSE: Indicate FW vdev Pause + * @HWSCHED_CMD_FILTER:Indicate HW sched command filter + * @HWSCHED_CMD_FLUSH: Indicate HW sched command flush + * @FW_RX_REFILL_FAILED:Indicate FW rx refill failed + * @FW_RX_FCS_LEN_ERROR:Indicate FW fcs len error + * @FW_WDOG_ERRORS:Indicate watchdog error + * @FW_BB_WDOG_ERROR:Indicate BB watchdog error * @STA_TX_TIMEOUT: Indicate sta tx timeout * @SOFTAP_TX_TIMEOUT:Indicate softap tx timeout + * @NUD_FAILURE: Indicare NUD Failure * * This enum contains the event subtype */ enum host_datastall_events { + DATA_STALL_NONE, + FW_VDEV_PAUSE, + HWSCHED_CMD_FILTER, + HWSCHED_CMD_FLUSH, + FW_RX_REFILL_FAILED, + FW_RX_FCS_LEN_ERROR, + FW_WDOG_ERRORS, + FW_BB_WDOG_ERROR, STA_TX_TIMEOUT, SOFTAP_TX_TIMEOUT, + NUD_FAILURE, }; /*------------------------------------------------------------------------- |
