Bläddra i källkod

qcacmn: Add new self recovery reason QDF_STATS_REQ_TIMEDOUT

Currently there is no recovery reason for stats request failure.
With this change add QDF_STATS_REQ_TIMEDOUT for stats request
failure.

Change-Id: Ie9ae8259fc20b4d8829b760e818b6a1f9194a9d0
CRs-Fixed: 3106570
Ashish Kumar Dhanotiya 3 år sedan
förälder
incheckning
1060f380f0
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      qdf/inc/qdf_types.h

+ 3 - 1
qdf/inc/qdf_types.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1411,6 +1411,7 @@ enum qdf_suspend_type {
  * @QDF_RX_REG_PKT_ROUTE_ERR: MSDU buf errors exceed thresh in REO err path
  * @QDF_VDEV_SM_OUT_OF_SYNC: Vdev SM is out of sync and connect req received
  * when already connected
+ * @QDF_STATS_REQ_TIMEDOUT: Stats request timedout
  */
 enum qdf_hang_reason {
 	QDF_REASON_UNSPECIFIED,
@@ -1440,6 +1441,7 @@ enum qdf_hang_reason {
 	QDF_TASKLET_CREDIT_LATENCY_DETECT,
 	QDF_RX_REG_PKT_ROUTE_ERR,
 	QDF_VDEV_SM_OUT_OF_SYNC,
+	QDF_STATS_REQ_TIMEDOUT,
 };
 
 /**