Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb1aae14 authored by Ashish Kumar Dhanotiya's avatar Ashish Kumar Dhanotiya Committed by Ashish
Browse files

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
parent 7bcd95e9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014-2020 The Linux Foundation. All rights reserved.
 * Copyright (c) 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
@@ -1355,6 +1356,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,
@@ -1383,6 +1385,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,
};

/**