OSDN Git Service

IB/rxe: Remove unnecessary rxe variable
authorZhu Yanjun <yanjun.zhu@oracle.com>
Sun, 20 Jan 2019 13:21:40 +0000 (08:21 -0500)
committerJason Gunthorpe <jgg@mellanox.com>
Mon, 21 Jan 2019 23:46:08 +0000 (16:46 -0700)
The variable rxe in the function is not used. So it is removed.

Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/sw/rxe/rxe_comp.c
drivers/infiniband/sw/rxe/rxe_loc.h
drivers/infiniband/sw/rxe/rxe_recv.c
drivers/infiniband/sw/rxe/rxe_resp.c

index e996da6..00eb99d 100644 (file)
@@ -146,8 +146,7 @@ void retransmit_timer(struct timer_list *t)
        }
 }
 
-void rxe_comp_queue_pkt(struct rxe_dev *rxe, struct rxe_qp *qp,
-                       struct sk_buff *skb)
+void rxe_comp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb)
 {
        int must_sched;
 
@@ -155,7 +154,8 @@ void rxe_comp_queue_pkt(struct rxe_dev *rxe, struct rxe_qp *qp,
 
        must_sched = skb_queue_len(&qp->resp_pkts) > 1;
        if (must_sched != 0)
-               rxe_counter_inc(rxe, RXE_CNT_COMPLETER_SCHED);
+               rxe_counter_inc(SKB_TO_PKT(skb)->rxe, RXE_CNT_COMPLETER_SCHED);
+
        rxe_run_task(&qp->comp.task, must_sched);
 }
 
index 01b7459..a65fbd0 100644 (file)
@@ -239,11 +239,9 @@ int rxe_responder(void *arg);
 
 u32 rxe_icrc_hdr(struct rxe_pkt_info *pkt, struct sk_buff *skb);
 
-void rxe_resp_queue_pkt(struct rxe_dev *rxe,
-                       struct rxe_qp *qp, struct sk_buff *skb);
+void rxe_resp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb);
 
-void rxe_comp_queue_pkt(struct rxe_dev *rxe,
-                       struct rxe_qp *qp, struct sk_buff *skb);
+void rxe_comp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb);
 
 static inline unsigned int wr_opcode_mask(int opcode, struct rxe_qp *qp)
 {
index 5c29a1b..f9a492e 100644 (file)
@@ -266,14 +266,12 @@ err1:
        return -EINVAL;
 }
 
-static inline void rxe_rcv_pkt(struct rxe_dev *rxe,
-                              struct rxe_pkt_info *pkt,
-                              struct sk_buff *skb)
+static inline void rxe_rcv_pkt(struct rxe_pkt_info *pkt, struct sk_buff *skb)
 {
        if (pkt->mask & RXE_REQ_MASK)
-               rxe_resp_queue_pkt(rxe, pkt->qp, skb);
+               rxe_resp_queue_pkt(pkt->qp, skb);
        else
-               rxe_comp_queue_pkt(rxe, pkt->qp, skb);
+               rxe_comp_queue_pkt(pkt->qp, skb);
 }
 
 static void rxe_rcv_mcast_pkt(struct rxe_dev *rxe, struct sk_buff *skb)
@@ -319,7 +317,7 @@ static void rxe_rcv_mcast_pkt(struct rxe_dev *rxe, struct sk_buff *skb)
 
                pkt->qp = qp;
                rxe_add_ref(qp);
-               rxe_rcv_pkt(rxe, pkt, skb);
+               rxe_rcv_pkt(pkt, skb);
        }
 
        spin_unlock_bh(&mcg->mcg_lock);
@@ -411,7 +409,7 @@ void rxe_rcv(struct sk_buff *skb)
        if (unlikely(bth_qpn(pkt) == IB_MULTICAST_QPN))
                rxe_rcv_mcast_pkt(rxe, skb);
        else
-               rxe_rcv_pkt(rxe, pkt, skb);
+               rxe_rcv_pkt(pkt, skb);
 
        return;
 
index 2315281..aca9f60 100644 (file)
@@ -104,8 +104,7 @@ static char *resp_state_name[] = {
 };
 
 /* rxe_recv calls here to add a request packet to the input queue */
-void rxe_resp_queue_pkt(struct rxe_dev *rxe, struct rxe_qp *qp,
-                       struct sk_buff *skb)
+void rxe_resp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb)
 {
        int must_sched;
        struct rxe_pkt_info *pkt = SKB_TO_PKT(skb);