Browse Source

qcacld-3.0: Ignore ndo_set_features failure from upper stack

Change I0e44cb1789516e1bcee619be3581d826f45f265b register
ndo_set_features API, and upper stack will invoke it during
driver loading phase, which is not expected.

Return success with debug level log printed if DSC check failure.

Change-Id: Iba35a6c3ed6394794c9be7332e0243d975ba37bd
CRs-Fixed: 2747343
Lin Bai 4 years ago
parent
commit
811e361c1c
1 changed files with 10 additions and 2 deletions
  1. 10 2
      core/hdd/src/wlan_hdd_main.c

+ 10 - 2
core/hdd/src/wlan_hdd_main.c

@@ -5101,8 +5101,16 @@ static int hdd_set_features(struct net_device *net_dev,
 	struct osif_vdev_sync *vdev_sync;
 
 	errno = osif_vdev_sync_op_start(net_dev, &vdev_sync);
-	if (errno)
-		return errno;
+	if (errno) {
+		/*
+		 * Only invoke from netdev_feature_update_work expected,
+		 * which is from CLD inside.
+		 * Ignore others from upper stack during loading phase,
+		 * and return success to avoid failure print from kernel.
+		 */
+		hdd_debug("VDEV in transition, ignore set_features");
+		return 0;
+	}
 
 	errno = __hdd_set_features(net_dev, features);