public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
From: philipp hortmann <philipp.g.hortmann@gmail.com>
To: Shang XiaoJing <shangxiaojing@huawei.com>
Cc: Larry.Finger@lwfinger.net, phil@philpotter.co.uk,
	paskripkin@gmail.com, gregkh@linuxfoundation.org,
	martin@kaiser.cx, straube.linux@gmail.com,
	marcus.yu.56@gmail.com, makvihas@gmail.com,
	linux-staging@lists.linux.dev
Subject: Re: [PATCH -next] staging: r8188eu: Use skb_put_data() instead of skb_put/memcpy pair
Date: Tue, 27 Sep 2022 20:19:07 +0200	[thread overview]
Message-ID: <20220927181907.GA16468@matrix-ESPRIMO-P710> (raw)
In-Reply-To: <20220927024050.13556-1-shangxiaojing@huawei.com>

On Tue, Sep 27, 2022 at 10:40:50AM +0800, Shang XiaoJing wrote:
> Use skb_put_data() instead of skb_put() and memcpy(), which is shorter
> and clear. Drop the tmp variable that is not needed any more.
> 
> Signed-off-by: Shang XiaoJing <shangxiaojing@huawei.com>
> ---
>  drivers/staging/r8188eu/core/rtw_recv.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/staging/r8188eu/core/rtw_recv.c b/drivers/staging/r8188eu/core/rtw_recv.c
> index 353c7468367a..44f92ce63440 100644
> --- a/drivers/staging/r8188eu/core/rtw_recv.c
> +++ b/drivers/staging/r8188eu/core/rtw_recv.c
> @@ -1412,7 +1412,6 @@ static int amsdu_to_msdu(struct adapter *padapter, struct recv_frame *prframe)
>  	u8	nr_subframes, i;
>  	unsigned char *pdata;
>  	struct rx_pkt_attrib *pattrib;
> -	unsigned char *data_ptr;
>  	struct sk_buff *sub_skb, *subframes[MAX_SUBFRAME_COUNT];
>  
>  	struct recv_priv *precvpriv = &padapter->recvpriv;
> @@ -1447,8 +1446,7 @@ static int amsdu_to_msdu(struct adapter *padapter, struct recv_frame *prframe)
>  		sub_skb = dev_alloc_skb(nSubframe_Length + 12);
>  		if (sub_skb) {
>  			skb_reserve(sub_skb, 12);
> -			data_ptr = (u8 *)skb_put(sub_skb, nSubframe_Length);
> -			memcpy(data_ptr, pdata, nSubframe_Length);
> +			skb_put_data(sub_skb, pdata, nSubframe_Length);
>  		} else {
>  			sub_skb = skb_clone(prframe->pkt, GFP_ATOMIC);
>  			if (sub_skb) {
> -- 
> 2.17.1
>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150

      reply	other threads:[~2022-09-27 18:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-27  2:40 [PATCH -next] staging: r8188eu: Use skb_put_data() instead of skb_put/memcpy pair Shang XiaoJing
2022-09-27 18:19 ` philipp hortmann [this message]

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=20220927181907.GA16468@matrix-ESPRIMO-P710 \
    --to=philipp.g.hortmann@gmail.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=makvihas@gmail.com \
    --cc=marcus.yu.56@gmail.com \
    --cc=martin@kaiser.cx \
    --cc=paskripkin@gmail.com \
    --cc=phil@philpotter.co.uk \
    --cc=shangxiaojing@huawei.com \
    --cc=straube.linux@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox