We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a3598 commit c7f50d0Copy full SHA for c7f50d0
drivers/net/wireless/intel/iwlwifi/iwl-trans.c
@@ -2,7 +2,7 @@
2
/*
3
* Copyright (C) 2015 Intel Mobile Communications GmbH
4
* Copyright (C) 2016-2017 Intel Deutschland GmbH
5
- * Copyright (C) 2019-2021, 2023-2024 Intel Corporation
+ * Copyright (C) 2019-2021, 2023-2025 Intel Corporation
6
*/
7
#include <linux/kernel.h>
8
#include <linux/bsearch.h>
@@ -639,6 +639,9 @@ IWL_EXPORT_SYMBOL(iwl_trans_tx);
639
void iwl_trans_reclaim(struct iwl_trans *trans, int queue, int ssn,
640
struct sk_buff_head *skbs, bool is_flush)
641
{
642
+ if (unlikely(test_bit(STATUS_FW_ERROR, &trans->status)))
643
+ return;
644
+
645
if (WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
646
"bad state = %d\n", trans->state))
647
return;
0 commit comments