Эх сурвалжийг харах

qcacld-3.0: Add vdev subtype to the vdev handle

The vdev subtype is needed to know if the operating
mode of a particular vdev is P2P or not.

Hence add the vdev subtype information in the
vdev handle.

CRs-Fixed: 2498715
Change-Id: Ia9b86bad389825474a0506804e07b7af555d36cb
Rakesh Pillai 5 жил өмнө
parent
commit
31d7fb2564

+ 4 - 1
core/dp/txrx/ol_txrx.c

@@ -1652,13 +1652,15 @@ ol_txrx_vdev_per_vdev_tx_desc_init(struct ol_txrx_vdev_t *vdev)
  * @vdev_id - the ID used to identify the virtual device to the target
  * @op_mode - whether this virtual device is operating as an AP,
  * an IBSS, or a STA
+ * @subtype:  Subtype of the operating vdev
  *
  * Return: success: handle to new data vdev object, failure: NULL
  */
 static struct cdp_vdev *
 ol_txrx_vdev_attach(struct cdp_pdev *ppdev,
 		    uint8_t *vdev_mac_addr,
-		    uint8_t vdev_id, enum wlan_op_mode op_mode)
+		    uint8_t vdev_id, enum wlan_op_mode op_mode,
+		    enum wlan_op_subtype subtype)
 {
 	struct ol_txrx_pdev_t  *pdev = (struct ol_txrx_pdev_t *)ppdev;
 	struct ol_txrx_vdev_t *vdev;
@@ -1676,6 +1678,7 @@ ol_txrx_vdev_attach(struct cdp_pdev *ppdev,
 	vdev->pdev = pdev;
 	vdev->vdev_id = vdev_id;
 	vdev->opmode = op_mode;
+	vdev->subtype = subtype;
 
 	vdev->delete.pending = 0;
 	vdev->safemode = 0;

+ 1 - 0
core/dp/txrx/ol_txrx_types.h

@@ -1211,6 +1211,7 @@ struct ol_txrx_vdev_t {
 	uint32_t num_filters;
 
 	enum wlan_op_mode opmode;
+	enum wlan_op_subtype subtype;
 
 #ifdef QCA_IBSS_SUPPORT
 	/* ibss mode related */