瀏覽代碼

qcacmn: Remove multicast logging check from wlan_log_to_user API

Multicast logging is MCL specific feature which controls sending
of host and fw netlink DIAG events to user space. This feature
should not control console logging from wlan_log_to_user because
it can lead to all debug logs getting logged on console until
CFG INI for multicast logging is parsed during initialization and
this can lead to watchdog bark beacuse of excessive logging during
WiFi driver initialization. Hence remove multicast logging check
from wlan_log_to_user API to avoid logging all debug logs on console
during WiFi driver initialization sequence.

Change-Id: I2a29928757f683a72345436a57de1ee8d02f53b3
CRs-Fixed: 2217749
Rajeev Kumar 7 年之前
父節點
當前提交
708e7f57c5
共有 1 個文件被更改,包括 2 次插入15 次删除
  1. 2 15
      utils/logging/src/wlan_logging_sock_svc.c

+ 2 - 15
utils/logging/src/wlan_logging_sock_svc.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -332,20 +332,7 @@ int wlan_log_to_user(QDF_TRACE_LEVEL log_level, char *to_be_sent, int length)
 	radio = cds_get_radio_index();
 #endif
 
-	if (
-#ifdef CONFIG_MCL
-		!cds_is_multicast_logging() ||
-#endif
-		 (radio == -EINVAL) ||
-		(!gwlan_logging.is_active)) {
-		/*
-		 * This is to make sure that we print the logs to kmsg console
-		 * when no logger app is running. This is also needed to
-		 * log the initial messages during loading of driver where even
-		 * if app is running it will not be able to
-		 * register with driver immediately and start logging all the
-		 * messages.
-		 */
+	if ((radio == -EINVAL) || (!gwlan_logging.is_active)) {
 		/*
 		 * R%d: if the radio index is invalid, just post the message
 		 * to console.