Patch "RDMA/rxe: Correct skb on loopback path" has been added to the 5.11-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    RDMA/rxe: Correct skb on loopback path

to the 5.11-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     rdma-rxe-correct-skb-on-loopback-path.patch
and it can be found in the queue-5.11 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 2515ff5899fe317cc608eab764741fbd75a0a048
Author: Bob Pearson <rpearsonhpe@xxxxxxxxx>
Date:   Thu Jan 28 12:23:02 2021 -0600

    RDMA/rxe: Correct skb on loopback path
    
    [ Upstream commit 5120bf0a5fc15dec210a0fe0f39e4a256bb6e349 ]
    
    rxe_net.c sends packets at the IP layer with skb->data pointing at the IP
    header but receives packets from a UDP tunnel with skb->data pointing at
    the UDP header.  On the loopback path this was not correctly accounted
    for.  This patch corrects for this by using sbk_pull() to strip the IP
    header from the skb on received packets.
    
    Fixes: 8700e3e7c485 ("Soft RoCE driver")
    Link: https://lore.kernel.org/r/20210128182301.16859-1-rpearson@xxxxxxx
    Signed-off-by: Bob Pearson <rpearson@xxxxxxx>
    Signed-off-by: Jason Gunthorpe <jgg@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/infiniband/sw/rxe/rxe_net.c b/drivers/infiniband/sw/rxe/rxe_net.c
index 943914c2a50c7..bce44502ab0ed 100644
--- a/drivers/infiniband/sw/rxe/rxe_net.c
+++ b/drivers/infiniband/sw/rxe/rxe_net.c
@@ -414,6 +414,11 @@ int rxe_send(struct rxe_pkt_info *pkt, struct sk_buff *skb)
 
 void rxe_loopback(struct sk_buff *skb)
 {
+	if (skb->protocol == htons(ETH_P_IP))
+		skb_pull(skb, sizeof(struct iphdr));
+	else
+		skb_pull(skb, sizeof(struct ipv6hdr));
+
 	rxe_rcv(skb);
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux