mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
iwlwifi: control led while update tx/rx bytes counts
LED blinking rate is based on tx/rx traffic, the most reasonable place to do it is after update the traffic byte counts This fixes the recent LED blinking breakage on 3945 introduced by "iwlwifi: separate led function from statistic notification" Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com> Tested-by: Maxim Levitsky <maximlevitsky@gmail.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
74ba67edfc
commit
d5f4cf71f7
@ -1078,7 +1078,6 @@ static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
|
|||||||
if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
|
if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
|
||||||
iwl_rx_handle(priv);
|
iwl_rx_handle(priv);
|
||||||
priv->isr_stats.rx++;
|
priv->isr_stats.rx++;
|
||||||
iwl_leds_background(priv);
|
|
||||||
handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
|
handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1287,7 +1286,6 @@ static void iwl_irq_tasklet(struct iwl_priv *priv)
|
|||||||
CSR_INT_PERIODIC_ENA);
|
CSR_INT_PERIODIC_ENA);
|
||||||
|
|
||||||
priv->isr_stats.rx++;
|
priv->isr_stats.rx++;
|
||||||
iwl_leds_background(priv);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This "Tx" DMA channel is used only for loading uCode */
|
/* This "Tx" DMA channel is used only for loading uCode */
|
||||||
|
@ -3187,6 +3187,7 @@ void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len)
|
|||||||
stats->data_cnt++;
|
stats->data_cnt++;
|
||||||
stats->data_bytes += len;
|
stats->data_bytes += len;
|
||||||
}
|
}
|
||||||
|
iwl_leds_background(priv);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(iwl_update_stats);
|
EXPORT_SYMBOL(iwl_update_stats);
|
||||||
#endif
|
#endif
|
||||||
|
@ -390,6 +390,7 @@ static inline void iwl_update_stats(struct iwl_priv *priv, bool is_tx,
|
|||||||
/* data */
|
/* data */
|
||||||
stats->data_bytes += len;
|
stats->data_bytes += len;
|
||||||
}
|
}
|
||||||
|
iwl_leds_background(priv);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user