Ver Fonte

qcacld-3.0: Refactor hdd_vdev_ready() to call using vdev

To use hdd_vdev_ready() API for each valid vdev of
an adapter, change the function declaration to have
vdev objmgr as function parameter.

Change-Id: I2d02f2e5d21f59d441f22b03e2aa94a28e9b5f1b
CRs-Fixed: 3294710
Vinod Kumar Pirla há 2 anos atrás
pai
commit
a4b22f8397
2 ficheiros alterados com 16 adições e 16 exclusões
  1. 12 1
      core/hdd/inc/wlan_hdd_main.h
  2. 4 15
      core/hdd/src/wlan_hdd_main.c

+ 12 - 1
core/hdd/inc/wlan_hdd_main.h

@@ -2555,7 +2555,18 @@ bool hdd_is_vdev_in_conn_state(struct hdd_adapter *adapter);
  */
 int hdd_vdev_create(struct hdd_adapter *adapter);
 int hdd_vdev_destroy(struct hdd_adapter *adapter);
-int hdd_vdev_ready(struct hdd_adapter *adapter);
+
+/**
+ * hdd_vdev_ready() - Configure FW post VDEV create
+ * @vdev: VDEV object.
+ *
+ * The function is used send configuration to the FW
+ * post VDEV creation.
+ * The caller to ensure to hold the VDEV reference
+ *
+ * Return: 0 on success, negative value on failure.
+ */
+int hdd_vdev_ready(struct wlan_objmgr_vdev *vdev);
 
 QDF_STATUS hdd_init_station_mode(struct hdd_adapter *adapter);
 struct hdd_adapter *hdd_get_adapter(struct hdd_context *hdd_ctx,

+ 4 - 15
core/hdd/src/wlan_hdd_main.c

@@ -6026,34 +6026,23 @@ QDF_STATUS hdd_sme_close_session_callback(uint8_t vdev_id)
 	return QDF_STATUS_SUCCESS;
 }
 
-int hdd_vdev_ready(struct hdd_adapter *adapter)
+int hdd_vdev_ready(struct wlan_objmgr_vdev *vdev)
 {
-	struct wlan_objmgr_vdev *vdev;
 	QDF_STATUS status;
 
-	vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_POWER_ID);
-	if (!vdev)
-		return -EINVAL;
-
 	status = pmo_vdev_ready(vdev);
-	if (QDF_IS_STATUS_ERROR(status)) {
-		hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
+	if (QDF_IS_STATUS_ERROR(status))
 		return qdf_status_to_os_return(status);
-	}
 
 	status = ucfg_reg_11d_vdev_created_update(vdev);
-	if (QDF_IS_STATUS_ERROR(status)) {
-		hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
+	if (QDF_IS_STATUS_ERROR(status))
 		return qdf_status_to_os_return(status);
-	}
 
 	if (wma_capability_enhanced_mcast_filter())
 		status = ucfg_pmo_enhanced_mc_filter_enable(vdev);
 	else
 		status = ucfg_pmo_enhanced_mc_filter_disable(vdev);
 
-	hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
-
 	return qdf_status_to_os_return(status);
 }
 
@@ -6329,7 +6318,7 @@ int hdd_vdev_create(struct hdd_adapter *adapter)
 	}
 
 	/* firmware ready for component communication, raise vdev_ready event */
-	errno = hdd_vdev_ready(adapter);
+	errno = hdd_vdev_ready(vdev);
 	if (errno) {
 		hdd_err("failed to dispatch vdev ready event: %d", errno);
 		goto hdd_vdev_destroy_procedure;