mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-24 02:18:18 +07:00
staging: r8188eu: Remove some false positives from kmemleak
When this driver preallocates some SKBs, kmemleak is unable to find that allocated memory when it scans. When the driver is unloaded, that memory is released; therefore, the report is a false positive. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
580b410553
commit
bc83c4cfc2
@ -13,6 +13,7 @@
|
||||
*
|
||||
******************************************************************************/
|
||||
#define _RTL8188EU_RECV_C_
|
||||
#include <linux/kmemleak.h>
|
||||
#include <osdep_service.h>
|
||||
#include <drv_types.h>
|
||||
#include <recv_osdep.h>
|
||||
@ -72,6 +73,7 @@ int rtl8188eu_init_recv_priv(struct adapter *padapter)
|
||||
MAX_RECVBUF_SZ + RECVBUFF_ALIGN_SZ,
|
||||
GFP_KERNEL);
|
||||
if (pskb) {
|
||||
kmemleak_not_leak(pskb);
|
||||
pskb->dev = padapter->pnetdev;
|
||||
tmpaddr = (size_t)pskb->data;
|
||||
alignm = tmpaddr & (RECVBUFF_ALIGN_SZ-1);
|
||||
|
Loading…
Reference in New Issue
Block a user