瀏覽代碼

qcacmn: Move osif priv deallocation to vdev destroy

osif priv is allocated as part of the vdev object and freed as part of
the logical vdev deletion. There is a race condition where in a
component
holding the reference to the vdev is trying to do an operation using
the osif priv. But in the other thread osif priv can be freed.
This can lead to null pointer exception.

Hence, move the osif priv deletion to the vdev physical destroy.
Change-Id: Iea3fd87cb272a51c5691ee2e39a590861c1b1637
CRs-Fixed: 2449996
Arun Kumar Khandavalli 5 年之前
父節點
當前提交
52ac4710fa
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      umac/cmn_services/obj_mgr/src/wlan_objmgr_vdev_obj.c

+ 1 - 0
umac/cmn_services/obj_mgr/src/wlan_objmgr_vdev_obj.c

@@ -107,6 +107,7 @@ static QDF_STATUS wlan_objmgr_vdev_obj_free(struct wlan_objmgr_vdev *vdev)
 
 	qdf_mem_free(vdev->vdev_mlme.bss_chan);
 	qdf_mem_free(vdev->vdev_mlme.des_chan);
+	qdf_mem_free(vdev->vdev_nif.osdev);
 	qdf_mem_free(vdev);
 
 	return QDF_STATUS_SUCCESS;