qcacmn: Decouple netlink service and wlan logging service

Netlink service init and exit is invoked as part of wlan logging
init and exit during qdf module init and exit. This brings in a
hard dependency to enable and compile wlan logging service
even if not used.

Decouple netlink service and wlan logging service to remove
inter-dependency. WIN qdf module currently does not require wlan
logging to be enabled. This separation leads to bss savings in qdf
module.

Change-Id: Ib0afafd196106eba78ad9783eb1a6cece77c00fa
CRs-Fixed: 2258640
此提交包含在:
Sathish Kumar
2018-06-20 17:57:24 +05:30
提交者 nshrivas
父節點 6874a85101
當前提交 18617b8638
共有 2 個檔案被更改,包括 4 行新增2 行删除

查看文件

@@ -3368,10 +3368,12 @@ void qdf_logging_exit(void)
#else
void qdf_logging_init(void)
{
nl_srv_init(NULL);
}
void qdf_logging_exit(void)
{
nl_srv_exit();
}
#endif