|
@@ -48,6 +48,7 @@ static bool logger_initialized;
|
|
|
/**
|
|
|
* nl_srv_init() - wrapper function to register to cnss_logger
|
|
|
* @wiphy: the pointer to the wiphy structure
|
|
|
+ * @proto: the host log netlink protocol
|
|
|
*
|
|
|
* The netlink socket is no longer initialized in the driver itself, instead
|
|
|
* will be initialized in the cnss_logger module, the driver should register
|
|
@@ -60,7 +61,7 @@ static bool logger_initialized;
|
|
|
*
|
|
|
* Return: radio index for success and -EINVAL for failure
|
|
|
*/
|
|
|
-int nl_srv_init(void *wiphy)
|
|
|
+int nl_srv_init(void *wiphy, int proto)
|
|
|
{
|
|
|
if (logger_initialized)
|
|
|
goto initialized;
|
|
@@ -267,7 +268,7 @@ qdf_export_symbol(nl_srv_is_initialized);
|
|
|
#include <net/cnss_nl.h>
|
|
|
|
|
|
/* For CNSS_GENL netlink sockets will be initialized by CNSS Kernel Module */
|
|
|
-int nl_srv_init(void *wiphy)
|
|
|
+int nl_srv_init(void *wiphy, int proto)
|
|
|
{
|
|
|
return 0;
|
|
|
}
|
|
@@ -481,7 +482,7 @@ int nl_srv_ucast(struct sk_buff *skb, int dst_pid, int flag,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#elif !defined(MULTI_IF_NAME)
|
|
|
+#elif !defined(MULTI_IF_NAME) || defined(MULTI_IF_LOG)
|
|
|
|
|
|
/* Global variables */
|
|
|
static DEFINE_MUTEX(nl_srv_sem);
|
|
@@ -497,7 +498,7 @@ static void nl_srv_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh);
|
|
|
* Initialize the netlink service.
|
|
|
* Netlink service is usable after this.
|
|
|
*/
|
|
|
-int nl_srv_init(void *wiphy)
|
|
|
+int nl_srv_init(void *wiphy, int proto)
|
|
|
{
|
|
|
int retcode = 0;
|
|
|
struct netlink_kernel_cfg cfg = {
|
|
@@ -505,7 +506,7 @@ int nl_srv_init(void *wiphy)
|
|
|
.input = nl_srv_rcv
|
|
|
};
|
|
|
|
|
|
- nl_srv_sock = netlink_kernel_create(&init_net, WLAN_NLINK_PROTO_FAMILY,
|
|
|
+ nl_srv_sock = netlink_kernel_create(&init_net, proto,
|
|
|
&cfg);
|
|
|
|
|
|
if (nl_srv_sock) {
|
|
@@ -738,7 +739,7 @@ qdf_export_symbol(nl_srv_is_initialized);
|
|
|
|
|
|
#else
|
|
|
|
|
|
-int nl_srv_init(void *wiphy)
|
|
|
+int nl_srv_init(void *wiphy, int proto)
|
|
|
{
|
|
|
return 0;
|
|
|
}
|