All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Ivan Safonov <insafonov@gmail.com>
Cc: Larry Finger <Larry.Finger@lwfinger.net>,
	devel@driverdev.osuosl.org, Puranjay Mohan <puranjay12@gmail.com>,
	linux-kernel@vger.kernel.org,
	Saurav Girepunje <saurav.girepunje@gmail.com>
Subject: Re: [PATCH] staging:r8188eu: avoid skb_clone for amsdu to msdu conversion
Date: Thu, 23 Apr 2020 13:29:10 +0200	[thread overview]
Message-ID: <20200423112910.GA3768232@kroah.com> (raw)
In-Reply-To: <20200418084112.3723-1-insafonov@gmail.com>

On Sat, Apr 18, 2020 at 11:41:12AM +0300, Ivan Safonov wrote:
> skb clones use same data buffer, so tail of one skb is corrupted by beginning of next skb.

Please properly wrap your changelog text at the correct column (72).

Also, your subject: line does not have the correct driver name :(

> 
> Signed-off-by: Ivan Safonov <insafonov@gmail.com>
> ---
>  drivers/staging/rtl8188eu/core/rtw_recv.c | 19 ++++++-------------
>  1 file changed, 6 insertions(+), 13 deletions(-)
> 
> diff --git a/drivers/staging/rtl8188eu/core/rtw_recv.c b/drivers/staging/rtl8188eu/core/rtw_recv.c
> index d4278361e002..a036ef104198 100644
> --- a/drivers/staging/rtl8188eu/core/rtw_recv.c
> +++ b/drivers/staging/rtl8188eu/core/rtw_recv.c
> @@ -1525,21 +1525,14 @@ static int amsdu_to_msdu(struct adapter *padapter, struct recv_frame *prframe)
>  
>  		/* Allocate new skb for releasing to upper layer */
>  		sub_skb = dev_alloc_skb(nSubframe_Length + 12);
> -		if (sub_skb) {
> -			skb_reserve(sub_skb, 12);
> -			skb_put_data(sub_skb, pdata, nSubframe_Length);
> -		} else {
> -			sub_skb = skb_clone(prframe->pkt, GFP_ATOMIC);
> -			if (sub_skb) {
> -				sub_skb->data = pdata;
> -				sub_skb->len = nSubframe_Length;
> -				skb_set_tail_pointer(sub_skb, nSubframe_Length);
> -			} else {
> -				DBG_88E("skb_clone() Fail!!! , nr_subframes=%d\n", nr_subframes);
> -				break;
> -			}
> +		if (!sub_skb) {
> +			DBG_88E("dev_alloc_skb() Fail!!! , nr_subframes=%d\n", nr_subframes);
> +			break;
>  		}
>  
> +		skb_reserve(sub_skb, 12);
> +		skb_put_data(sub_skb, pdata, nSubframe_Length);
> +

Have you tested this?

thanks,

greg k-h

  reply	other threads:[~2020-04-23 11:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-18  8:41 [PATCH] staging:r8188eu: avoid skb_clone for amsdu to msdu conversion Ivan Safonov
2020-04-23 11:29 ` Greg Kroah-Hartman [this message]
2020-04-23 13:02   ` Ivan Safonov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200423112910.GA3768232@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=Larry.Finger@lwfinger.net \
    --cc=devel@driverdev.osuosl.org \
    --cc=insafonov@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=puranjay12@gmail.com \
    --cc=saurav.girepunje@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.