Unverified Commit 5fd300c4 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files
parents 906ec11a 101260f5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -123,12 +123,12 @@ void rxe_comp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb)
{
	int must_sched;

	skb_queue_tail(&qp->resp_pkts, skb);

	must_sched = skb_queue_len(&qp->resp_pkts) > 1;
	must_sched = skb_queue_len(&qp->resp_pkts) > 0;
	if (must_sched != 0)
		rxe_counter_inc(SKB_TO_PKT(skb)->rxe, RXE_CNT_COMPLETER_SCHED);

	skb_queue_tail(&qp->resp_pkts, skb);

	rxe_run_task(&qp->comp.task, must_sched);
}