staging: r8188eu: Remove wrappers around vfree
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2397c6e092
commit
03bd6aea7b
@ -129,9 +129,8 @@ _func_enter_;
|
||||
rtw_free_mlme_priv_ie_data(pmlmepriv);
|
||||
|
||||
if (pmlmepriv) {
|
||||
if (pmlmepriv->free_bss_buf) {
|
||||
rtw_vmfree(pmlmepriv->free_bss_buf, MAX_BSS_CNT * sizeof(struct wlan_network));
|
||||
}
|
||||
if (pmlmepriv->free_bss_buf)
|
||||
vfree(pmlmepriv->free_bss_buf);
|
||||
}
|
||||
_func_exit_;
|
||||
}
|
||||
|
@ -943,7 +943,7 @@ void _rtw_mp_xmit_priv(struct xmit_priv *pxmitpriv)
|
||||
}
|
||||
|
||||
if (pxmitpriv->pallocated_xmit_extbuf)
|
||||
rtw_vmfree(pxmitpriv->pallocated_xmit_extbuf, num_xmit_extbuf * sizeof(struct xmit_buf) + 4);
|
||||
vfree(pxmitpriv->pallocated_xmit_extbuf);
|
||||
|
||||
if (padapter->registrypriv.mp_mode == 0) {
|
||||
max_xmit_extbuf_size = 20000;
|
||||
|
@ -129,7 +129,7 @@ _func_enter_;
|
||||
rtw_os_recv_resource_free(precvpriv);
|
||||
|
||||
if (precvpriv->pallocated_frame_buf) {
|
||||
rtw_vmfree(precvpriv->pallocated_frame_buf, NR_RECVFRAME * sizeof(union recv_frame) + RXFRAME_ALIGN_SZ);
|
||||
vfree(precvpriv->pallocated_frame_buf);
|
||||
}
|
||||
|
||||
rtw_hal_free_recv_priv(padapter);
|
||||
|
@ -208,7 +208,7 @@ _func_enter_;
|
||||
rtw_mfree_sta_priv_lock(pstapriv);
|
||||
|
||||
if (pstapriv->pallocated_stainfo_buf)
|
||||
rtw_vmfree(pstapriv->pallocated_stainfo_buf, sizeof(struct sta_info)*NUM_STA+4);
|
||||
vfree(pstapriv->pallocated_stainfo_buf);
|
||||
}
|
||||
|
||||
_func_exit_;
|
||||
|
@ -259,10 +259,10 @@ void _rtw_free_xmit_priv (struct xmit_priv *pxmitpriv)
|
||||
}
|
||||
|
||||
if (pxmitpriv->pallocated_frame_buf)
|
||||
rtw_vmfree(pxmitpriv->pallocated_frame_buf, NR_XMITFRAME * sizeof(struct xmit_frame) + 4);
|
||||
vfree(pxmitpriv->pallocated_frame_buf);
|
||||
|
||||
if (pxmitpriv->pallocated_xmitbuf)
|
||||
rtw_vmfree(pxmitpriv->pallocated_xmitbuf, NR_XMITBUFF * sizeof(struct xmit_buf) + 4);
|
||||
vfree(pxmitpriv->pallocated_xmitbuf);
|
||||
|
||||
/* free xmit extension buff */
|
||||
pxmitbuf = (struct xmit_buf *)pxmitpriv->pxmit_extbuf;
|
||||
@ -272,7 +272,7 @@ void _rtw_free_xmit_priv (struct xmit_priv *pxmitpriv)
|
||||
}
|
||||
|
||||
if (pxmitpriv->pallocated_xmit_extbuf) {
|
||||
rtw_vmfree(pxmitpriv->pallocated_xmit_extbuf, num_xmit_extbuf * sizeof(struct xmit_buf) + 4);
|
||||
vfree(pxmitpriv->pallocated_xmit_extbuf);
|
||||
}
|
||||
|
||||
rtw_free_hwxmits(padapter);
|
||||
|
@ -26,12 +26,6 @@ void ODM_AllocateMemory(struct odm_dm_struct *pDM_Odm, void **pPtr, u32 length)
|
||||
*pPtr = vzalloc(length);
|
||||
}
|
||||
|
||||
/* length could be ignored, used to detect memory leakage. */
|
||||
void ODM_FreeMemory(struct odm_dm_struct *pDM_Odm, void *pPtr, u32 length)
|
||||
{
|
||||
rtw_vmfree(pPtr, length);
|
||||
}
|
||||
|
||||
s32 ODM_CompareMemory(struct odm_dm_struct *pDM_Odm, void *pBuf1, void *pBuf2, u32 length)
|
||||
{
|
||||
return _rtw_memcmp(pBuf1, pBuf2, length);
|
||||
|
@ -387,7 +387,7 @@ void rtw_IOL_cmd_tx_pkt_buf_dump(struct adapter *Adapter, int data_len)
|
||||
} while (!rstatus && (loop++ < 10));
|
||||
}
|
||||
rtw_IOL_cmd_buf_dump(Adapter, data_len, pbuf);
|
||||
rtw_vmfree(pbuf, data_len+10);
|
||||
vfree(pbuf);
|
||||
}
|
||||
DBG_88E("###### %s ######\n", __func__);
|
||||
}
|
||||
|
@ -79,7 +79,6 @@ typedef void (*RT_WORKITEM_CALL_BACK)(void *pContext);
|
||||
|
||||
/* Memory Relative Function. */
|
||||
void ODM_AllocateMemory(struct odm_dm_struct *pDM_Odm, void **pPtr, u32 length);
|
||||
void ODM_FreeMemory(struct odm_dm_struct *pDM_Odm, void *pPtr, u32 length);
|
||||
|
||||
s32 ODM_CompareMemory(struct odm_dm_struct *pDM_Odm, void *pBuf1, void *pBuf2,
|
||||
u32 length);
|
||||
|
@ -230,11 +230,9 @@ extern unsigned char WPA_TKIP_CIPHER[4];
|
||||
extern unsigned char RSN_TKIP_CIPHER[4];
|
||||
|
||||
#define rtw_update_mem_stat(flag, sz) do {} while (0)
|
||||
void _rtw_vmfree(u8 *pbuf, u32 sz);
|
||||
u8 *_rtw_zmalloc(u32 sz);
|
||||
u8 *_rtw_malloc(u32 sz);
|
||||
void _rtw_mfree(u8 *pbuf, u32 sz);
|
||||
#define rtw_vmfree(pbuf, sz) _rtw_vmfree((pbuf), (sz))
|
||||
#define rtw_malloc(sz) _rtw_malloc((sz))
|
||||
#define rtw_zmalloc(sz) _rtw_zmalloc((sz))
|
||||
#define rtw_mfree(pbuf, sz) _rtw_mfree((pbuf), (sz))
|
||||
|
@ -5655,7 +5655,7 @@ static int rtw_wx_set_priv(struct net_device *dev,
|
||||
return -ENOMEM;
|
||||
|
||||
if (copy_from_user(ext, dwrq->pointer, len)) {
|
||||
rtw_vmfree(ext, len);
|
||||
vfree(ext);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
@ -5695,7 +5695,7 @@ static int rtw_wx_set_priv(struct net_device *dev,
|
||||
|
||||
FREE_EXT:
|
||||
|
||||
rtw_vmfree(ext, len);
|
||||
vfree(ext);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -55,11 +55,6 @@ u32 rtw_atoi(u8 *s)
|
||||
return num;
|
||||
}
|
||||
|
||||
inline void _rtw_vmfree(u8 *pbuf, u32 sz)
|
||||
{
|
||||
vfree(pbuf);
|
||||
}
|
||||
|
||||
u8 *_rtw_malloc(u32 sz)
|
||||
{
|
||||
u8 *pbuf = NULL;
|
||||
@ -260,7 +255,7 @@ void rtw_free_netdev(struct net_device *netdev)
|
||||
if (!pnpi->priv)
|
||||
goto RETURN;
|
||||
|
||||
rtw_vmfree(pnpi->priv, pnpi->sizeof_priv);
|
||||
vfree(pnpi->priv);
|
||||
free_netdev(netdev);
|
||||
|
||||
RETURN:
|
||||
|
@ -746,7 +746,7 @@ free_adapter:
|
||||
if (pnetdev)
|
||||
rtw_free_netdev(pnetdev);
|
||||
else if (padapter)
|
||||
rtw_vmfree((u8 *)padapter, sizeof(*padapter));
|
||||
vfree(padapter);
|
||||
padapter = NULL;
|
||||
}
|
||||
exit:
|
||||
|
Loading…
Reference in New Issue
Block a user