Parcourir la source

dataipa: Fixed RNDIS teardown warning

During RNDIS teardown, there are many warning stack prints taking
place. As a result, the composition switch timing is experiencing
a delay longer than the 3 seconds allocated by the userspace timer
when the composition request begins, causing a timeout with the
userspace.With this change we are now using kernel APIs.

Change-Id: Ibbf840fa1764cf3fa2497bd5a642b1aa6e7e1b44
Abhishek Raghuvanshi il y a 2 ans
Parent
commit
110ac3d49e

+ 13 - 5
drivers/platform/msm/ipa/ipa_clients/ecm_ipa.c

@@ -1,6 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
  * Copyright (c) 2013-2021, The Linux Foundation. All rights reserved.
+ *
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  */
 
 #include <linux/debugfs.h>
@@ -235,7 +237,7 @@ static void ecm_ipa_debugfs_destroy(struct ecm_ipa_dev *ecm_ipa_ctx);
 static int ecm_ipa_ep_registers_cfg(u32 usb_to_ipa_hdl, u32 ipa_to_usb_hdl,
 	bool is_vlan_mode);
 static int ecm_ipa_set_device_ethernet_addr
-	(u8 *dev_ethaddr, u8 device_ethaddr[]);
+	(struct net_device *net, u8 device_ethaddr[]);
 static enum ecm_ipa_state ecm_ipa_next_state
 	(enum ecm_ipa_state current_state, enum ecm_ipa_operation operation);
 static const char *ecm_ipa_state_string(enum ecm_ipa_state state);
@@ -346,7 +348,7 @@ int ecm_ipa_init(struct ecm_ipa_params *params)
 	ecm_ipa_debugfs_init(ecm_ipa_ctx);
 
 	result = ecm_ipa_set_device_ethernet_addr
-		(net->dev_addr, params->device_ethaddr);
+		(net, params->device_ethaddr);
 	if (result) {
 		ECM_IPA_ERROR("set device MAC failed\n");
 		goto fail_set_device_ethernet;
@@ -1511,12 +1513,18 @@ out:
  * Returns 0 for success, negative otherwise
  */
 static int ecm_ipa_set_device_ethernet_addr
-	(u8 *dev_ethaddr, u8 device_ethaddr[])
+	(struct net_device *net, u8 device_ethaddr[])
 {
 	if (!is_valid_ether_addr(device_ethaddr))
 		return -EINVAL;
-	memcpy(dev_ethaddr, device_ethaddr, ETH_ALEN);
-	ECM_IPA_DEBUG("device ethernet address: %pM\n", dev_ethaddr);
+
+#if (LINUX_VERSION_CODE > KERNEL_VERSION(5, 15, 0))
+	net->addr_len = ETH_ALEN;
+	dev_addr_set(net, device_ethaddr);
+#else
+	memcpy((u8 *)net->dev_addr, device_ethaddr, ETH_ALEN);
+	ECM_IPA_DEBUG("device ethernet address: %pM\n", (u8 *)net->dev_addr);
+#endif
 	return 0;
 }
 

+ 12 - 4
drivers/platform/msm/ipa/ipa_clients/rndis_ipa.c

@@ -1,6 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
  * Copyright (c) 2013-2021, The Linux Foundation. All rights reserved.
+ *
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  */
 
 #include <linux/atomic.h>
@@ -313,7 +315,7 @@ static int rndis_ipa_ep_registers_cfg
 	bool deaggr_enable,
 	bool is_vlan_mode);
 static int rndis_ipa_set_device_ethernet_addr
-	(u8 *dev_ethaddr,
+	(struct net_device *net,
 	u8 device_ethaddr[]);
 static enum rndis_ipa_state rndis_ipa_next_state
 	(enum rndis_ipa_state current_state,
@@ -641,7 +643,7 @@ int rndis_ipa_init(struct ipa_usb_init_params *params)
 	rndis_ipa_debugfs_init(rndis_ipa_ctx);
 
 	result = rndis_ipa_set_device_ethernet_addr
-		((u8 *)net->dev_addr, rndis_ipa_ctx->device_ethaddr);
+		(net, rndis_ipa_ctx->device_ethaddr);
 	if (result) {
 		RNDIS_IPA_ERROR("set device MAC failed\n");
 		goto fail_set_device_ethernet;
@@ -2220,12 +2222,18 @@ static int rndis_ipa_ep_registers_cfg(
  * Returns 0 for success, negative otherwise
  */
 static int rndis_ipa_set_device_ethernet_addr(
-	u8 *dev_ethaddr,
+	struct net_device *net,
 	u8 device_ethaddr[])
 {
 	if (!is_valid_ether_addr(device_ethaddr))
 		return -EINVAL;
-	memcpy(dev_ethaddr, device_ethaddr, ETH_ALEN);
+
+#if (LINUX_VERSION_CODE > KERNEL_VERSION(5, 15, 0))
+	net->addr_len = ETH_ALEN;
+	dev_addr_set(net, device_ethaddr);
+#else
+	memcpy((u8 *)net->dev_addr, device_ethaddr, ETH_ALEN);
+#endif
 
 	return 0;
 }