IB/rxe: Cache dst in QP instead of getting it for each send
authoryonatanc <yonatanc@mellanox.com>
Thu, 20 Apr 2017 17:55:56 +0000 (20:55 +0300)
committerDoug Ledford <dledford@redhat.com>
Fri, 21 Apr 2017 14:45:02 +0000 (10:45 -0400)
In RC QP there is no need to resolve the outgoing interface
for each packet, as this does not change during QP life cycle.

Instead cache the interface on the socket and use that one.
This improves performance by 12% by sparing redundant
calls to rxe_find_route.

ib_send_bw -d rxe0  -x 1 -n 9000 -e  -s $((1024 * 1024 )) -l 100

----------------------------------------------------------------------------------------
|        | bytes   | iterations | BW peak[MB/sec] | BW average[MB/sec] | MsgRate[Mpps] |
----------------------------------------------------------------------------------------
| before | 1048576 | 9000       | inf             | 551.21             | 0.000551      |
| after  | 1048576 | 9000       | inf             | 615.54             | 0.000616      |
----------------------------------------------------------------------------------------

Fixes: 8700e3e7c485 ("Soft RoCE driver")
Signed-off-by: Yonatan Cohen <yonatanc@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/sw/rxe/rxe_net.c
drivers/infiniband/sw/rxe/rxe_qp.c

index d8610960630ac54998ddd33531c77b2b898e247c..bf2c5324e1070b651cfa8c932d5478ef8e1b40ff 100644 (file)
@@ -210,6 +210,39 @@ static struct dst_entry *rxe_find_route6(struct net_device *ndev,
 
 #endif
 
+static struct dst_entry *rxe_find_route(struct rxe_dev *rxe,
+                                       struct rxe_qp *qp,
+                                       struct rxe_av *av)
+{
+       struct dst_entry *dst = NULL;
+
+       if (qp_type(qp) == IB_QPT_RC)
+               dst = sk_dst_get(qp->sk->sk);
+
+       if (!dst || !(dst->obsolete && dst->ops->check(dst, 0))) {
+               if (dst)
+                       dst_release(dst);
+
+               if (av->network_type == RDMA_NETWORK_IPV4) {
+                       struct in_addr *saddr;
+                       struct in_addr *daddr;
+
+                       saddr = &av->sgid_addr._sockaddr_in.sin_addr;
+                       daddr = &av->dgid_addr._sockaddr_in.sin_addr;
+                       dst = rxe_find_route4(rxe->ndev, saddr, daddr);
+               } else if (av->network_type == RDMA_NETWORK_IPV6) {
+                       struct in6_addr *saddr6;
+                       struct in6_addr *daddr6;
+
+                       saddr6 = &av->sgid_addr._sockaddr_in6.sin6_addr;
+                       daddr6 = &av->dgid_addr._sockaddr_in6.sin6_addr;
+                       dst = rxe_find_route6(rxe->ndev, saddr6, daddr6);
+               }
+       }
+
+       return dst;
+}
+
 static int rxe_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
 {
        struct udphdr *udph;
@@ -301,7 +334,7 @@ static void prepare_ipv4_hdr(struct dst_entry *dst, struct sk_buff *skb,
        skb_scrub_packet(skb, xnet);
 
        skb_clear_hash(skb);
-       skb_dst_set(skb, dst);
+       skb_dst_set(skb, dst_clone(dst));
        memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
 
        skb_push(skb, sizeof(struct iphdr));
@@ -349,13 +382,14 @@ static void prepare_ipv6_hdr(struct dst_entry *dst, struct sk_buff *skb,
 static int prepare4(struct rxe_dev *rxe, struct rxe_pkt_info *pkt,
                    struct sk_buff *skb, struct rxe_av *av)
 {
+       struct rxe_qp *qp = pkt->qp;
        struct dst_entry *dst;
        bool xnet = false;
        __be16 df = htons(IP_DF);
        struct in_addr *saddr = &av->sgid_addr._sockaddr_in.sin_addr;
        struct in_addr *daddr = &av->dgid_addr._sockaddr_in.sin_addr;
 
-       dst = rxe_find_route4(rxe->ndev, saddr, daddr);
+       dst = rxe_find_route(rxe, qp, av);
        if (!dst) {
                pr_err("Host not reachable\n");
                return -EHOSTUNREACH;
@@ -369,17 +403,24 @@ static int prepare4(struct rxe_dev *rxe, struct rxe_pkt_info *pkt,
 
        prepare_ipv4_hdr(dst, skb, saddr->s_addr, daddr->s_addr, IPPROTO_UDP,
                         av->grh.traffic_class, av->grh.hop_limit, df, xnet);
+
+       if (qp_type(qp) == IB_QPT_RC)
+               sk_dst_set(qp->sk->sk, dst);
+       else
+               dst_release(dst);
+
        return 0;
 }
 
 static int prepare6(struct rxe_dev *rxe, struct rxe_pkt_info *pkt,
                    struct sk_buff *skb, struct rxe_av *av)
 {
-       struct dst_entry *dst;
+       struct rxe_qp *qp = pkt->qp;
+       struct dst_entry *dst = NULL;
        struct in6_addr *saddr = &av->sgid_addr._sockaddr_in6.sin6_addr;
        struct in6_addr *daddr = &av->dgid_addr._sockaddr_in6.sin6_addr;
 
-       dst = rxe_find_route6(rxe->ndev, saddr, daddr);
+       dst = rxe_find_route(rxe, qp, av);
        if (!dst) {
                pr_err("Host not reachable\n");
                return -EHOSTUNREACH;
@@ -394,6 +435,12 @@ static int prepare6(struct rxe_dev *rxe, struct rxe_pkt_info *pkt,
        prepare_ipv6_hdr(dst, skb, saddr, daddr, IPPROTO_UDP,
                         av->grh.traffic_class,
                         av->grh.hop_limit);
+
+       if (qp_type(qp) == IB_QPT_RC)
+               sk_dst_set(qp->sk->sk, dst);
+       else
+               dst_release(dst);
+
        return 0;
 }
 
index 3ad9b48212deb6e27ab9465da9005bf684edbe65..1a123edf555e99b9b59f7db2efd050f1d46962e1 100644 (file)
@@ -849,6 +849,14 @@ void rxe_qp_cleanup(struct rxe_pool_entry *arg)
                qp->resp.mr = NULL;
        }
 
+       if (qp_type(qp) == IB_QPT_RC) {
+               struct dst_entry *dst = NULL;
+
+               dst = sk_dst_get(qp->sk->sk);
+               if (dst)
+                       dst_release(dst);
+       }
+
        free_rd_atomic_resources(qp);
 
        kernel_sock_shutdown(qp->sk, SHUT_RDWR);