[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <32587233-0ff6-ed0f-b873-cd4f797005a9@gmail.com>
Date: Tue, 19 Apr 2022 22:27:05 +0300
From: Pavel Skripkin <paskripkin@...il.com>
To: Jaehee Park <jhpark1013@...il.com>, Larry.Finger@...inger.net
Cc: phil@...lpotter.co.uk, gregkh@...uxfoundation.org,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org,
outreachy@...ts.linux.dev
Subject: Re: [PATCH v3 1/7] staging: r8188eu: remove unused member
free_bss_buf
Hi Jaehee,
On 4/19/22 21:19, Jaehee Park wrote:
> The free_bss_buf member of pmlmepriv is unused. Remove all related
> lines.
>
> Suggested-by: Pavel Skripkin <paskripkin@...il.com>
> Signed-off-by: Jaehee Park <jhpark1013@...il.com>
> ---
[code snip]
> @@ -55,16 +54,6 @@ static int _rtw_init_mlme_priv(struct adapter *padapter)
>
> memset(&pmlmepriv->assoc_ssid, 0, sizeof(struct ndis_802_11_ssid));
>
> - pbuf = vzalloc(MAX_BSS_CNT * (sizeof(struct wlan_network)));
> -
> - if (!pbuf) {
> - res = _FAIL;
> - goto exit;
> - }
> - pmlmepriv->free_bss_buf = pbuf;
> -
> - pnetwork = (struct wlan_network *)pbuf;
> -
> for (i = 0; i < MAX_BSS_CNT; i++) {
> INIT_LIST_HEAD(&pnetwork->list);
>
And now kernel will just boom here :)
I am sorry for not noticing that from the beginning, that's my fault.
This pointer is used in very weird way, so let's come back to initial
patch: just remove 'if' before vfree().
Refactoring that place is the separate task
I am again sorry for wrong suggestion,
With regards,
Pavel Skripkin
Powered by blists - more mailing lists