diff mbox series

[-next] IB/hfi1: Use skb_put_data() instead of skb_put/memcpy pair

Message ID 20220927022919.16902-1-shangxiaojing@huawei.com (mailing list archive)
State Accepted
Headers show
Series [-next] IB/hfi1: Use skb_put_data() instead of skb_put/memcpy pair | expand

Commit Message

Shang XiaoJing Sept. 27, 2022, 2:29 a.m. UTC
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/infiniband/hw/hfi1/ipoib_rx.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

Comments

Dennis Dalessandro Sept. 27, 2022, 12:10 p.m. UTC | #1
On 9/26/22 10:29 PM, 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/infiniband/hw/hfi1/ipoib_rx.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/infiniband/hw/hfi1/ipoib_rx.c b/drivers/infiniband/hw/hfi1/ipoib_rx.c
> index 3afa7545242c..629691a572ef 100644
> --- a/drivers/infiniband/hw/hfi1/ipoib_rx.c
> +++ b/drivers/infiniband/hw/hfi1/ipoib_rx.c
> @@ -11,13 +11,10 @@
>  
>  static void copy_ipoib_buf(struct sk_buff *skb, void *data, int size)
>  {
> -	void *dst_data;
> -
>  	skb_checksum_none_assert(skb);
>  	skb->protocol = *((__be16 *)data);
>  
> -	dst_data = skb_put(skb, size);
> -	memcpy(dst_data, data, size);
> +	skb_put_data(skb, data, size);
>  	skb->mac_header = HFI1_IPOIB_PSEUDO_LEN;
>  	skb_pull(skb, HFI1_IPOIB_ENCAP_LEN);
>  }

Seems OK to me. Although I don't know that it's any more "clear". More
appropriate commit message would say it removes the open coded way of doing
things. Regardless...

Reviewed-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
Jason Gunthorpe Sept. 27, 2022, 2:12 p.m. UTC | #2
On Tue, 27 Sep 2022 10:29:19 +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.
> 
> 

Applied, thanks!

[1/1] IB/hfi1: Use skb_put_data() instead of skb_put/memcpy pair
      https://git.kernel.org/rdma/rdma/c/cbdae01d8b517b

Best regards,
diff mbox series

Patch

diff --git a/drivers/infiniband/hw/hfi1/ipoib_rx.c b/drivers/infiniband/hw/hfi1/ipoib_rx.c
index 3afa7545242c..629691a572ef 100644
--- a/drivers/infiniband/hw/hfi1/ipoib_rx.c
+++ b/drivers/infiniband/hw/hfi1/ipoib_rx.c
@@ -11,13 +11,10 @@ 
 
 static void copy_ipoib_buf(struct sk_buff *skb, void *data, int size)
 {
-	void *dst_data;
-
 	skb_checksum_none_assert(skb);
 	skb->protocol = *((__be16 *)data);
 
-	dst_data = skb_put(skb, size);
-	memcpy(dst_data, data, size);
+	skb_put_data(skb, data, size);
 	skb->mac_header = HFI1_IPOIB_PSEUDO_LEN;
 	skb_pull(skb, HFI1_IPOIB_ENCAP_LEN);
 }