qcacmn: Remove CONFIG_MCL in wlan_flush_host_logs_for_fatal

This is to remove CONFIG_MCL in wlan_flush_host_logs_for_fatal.
And move condition cds_is_log_report_in_progress to qcacld code.

Change-Id: Ie231e966229789bcd8fa69aef1bc20e9b07a88ae
CRs-Fixed: 2484897
此提交包含在:
Jingxiang Ge
2019-07-05 17:10:52 +08:00
提交者 nshrivas
父節點 e575abcaa6
當前提交 4cbb2ada5b

查看文件

@@ -1126,20 +1126,14 @@ void wlan_flush_host_logs_for_fatal(void)
{
unsigned long flags;
#ifdef CONFIG_MCL
if (cds_is_log_report_in_progress()) {
#endif
if (gwlan_logging.flush_timer_period == 0)
pr_info("%s:flush all host logs Setting HOST_LOG_POST_MASK\n",
__func__);
spin_lock_irqsave(&gwlan_logging.spin_lock, flags);
wlan_queue_logmsg_for_app();
spin_unlock_irqrestore(&gwlan_logging.spin_lock, flags);
set_bit(HOST_LOG_DRIVER_MSG, &gwlan_logging.eventFlag);
wake_up_interruptible(&gwlan_logging.wait_queue);
#ifdef CONFIG_MCL
}
#endif
if (gwlan_logging.flush_timer_period == 0)
pr_info("%s:flush all host logs Setting HOST_LOG_POST_MASK\n",
__func__);
spin_lock_irqsave(&gwlan_logging.spin_lock, flags);
wlan_queue_logmsg_for_app();
spin_unlock_irqrestore(&gwlan_logging.spin_lock, flags);
set_bit(HOST_LOG_DRIVER_MSG, &gwlan_logging.eventFlag);
wake_up_interruptible(&gwlan_logging.wait_queue);
}
#ifdef FEATURE_PKTLOG