Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d8a4733 authored by Wei Yongjun's avatar Wei Yongjun Committed by Doug Ledford
Browse files

IB/rxe: use setup_timer to simplify the code



Use setup_timer function instead of initializing timer with the function
and data fields.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 32f8e839
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -273,13 +273,8 @@ static int rxe_qp_init_req(struct rxe_dev *rxe, struct rxe_qp *qp,
	rxe_init_task(rxe, &qp->comp.task, qp,
		      rxe_completer, "comp");

	init_timer(&qp->rnr_nak_timer);
	qp->rnr_nak_timer.function = rnr_nak_timer;
	qp->rnr_nak_timer.data = (unsigned long)qp;

	init_timer(&qp->retrans_timer);
	qp->retrans_timer.function = retransmit_timer;
	qp->retrans_timer.data = (unsigned long)qp;
	setup_timer(&qp->rnr_nak_timer, rnr_nak_timer, (unsigned long)qp);
	setup_timer(&qp->retrans_timer, retransmit_timer, (unsigned long)qp);
	qp->qp_timeout_jiffies = 0; /* Can't be set for UD/UC in modify_qp */

	return 0;