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

Commit eb04ff09 authored by Mike Marciniszyn's avatar Mike Marciniszyn Committed by Doug Ledford
Browse files

IB/hfi1: Ensure read of producer s_head is correct



The read of s_head in the hfi1_make_rc_req() and
qib_make_rc_req() lack the necesary barrier instuctions.

Correct other ACCESS_ONCE() warnings in the same file.

Reviewed-by: default avatarAshutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent a82a7fcd
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -414,7 +414,7 @@ int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
			goto bail;
			goto bail;
		/* We are in the error state, flush the work request. */
		/* We are in the error state, flush the work request. */
		smp_read_barrier_depends(); /* see post_one_send() */
		smp_read_barrier_depends(); /* see post_one_send() */
		if (qp->s_last == ACCESS_ONCE(qp->s_head))
		if (qp->s_last == READ_ONCE(qp->s_head))
			goto bail;
			goto bail;
		/* If DMAs are in progress, we can't flush immediately. */
		/* If DMAs are in progress, we can't flush immediately. */
		if (iowait_sdma_pending(&priv->s_iowait)) {
		if (iowait_sdma_pending(&priv->s_iowait)) {
@@ -457,7 +457,8 @@ int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
		newreq = 0;
		newreq = 0;
		if (qp->s_cur == qp->s_tail) {
		if (qp->s_cur == qp->s_tail) {
			/* Check if send work queue is empty. */
			/* Check if send work queue is empty. */
			if (qp->s_tail == qp->s_head) {
			smp_read_barrier_depends(); /* see post_one_send() */
			if (qp->s_tail == READ_ONCE(qp->s_head)) {
				clear_ahg(qp);
				clear_ahg(qp);
				goto bail;
				goto bail;
			}
			}
@@ -1590,7 +1591,7 @@ static void rc_rcv_resp(struct hfi1_ibport *ibp,


	/* Ignore invalid responses. */
	/* Ignore invalid responses. */
	smp_read_barrier_depends(); /* see post_one_send */
	smp_read_barrier_depends(); /* see post_one_send */
	if (cmp_psn(psn, ACCESS_ONCE(qp->s_next_psn)) >= 0)
	if (cmp_psn(psn, READ_ONCE(qp->s_next_psn)) >= 0)
		goto ack_done;
		goto ack_done;


	/* Ignore duplicate responses. */
	/* Ignore duplicate responses. */
+4 −3
Original line number Original line Diff line number Diff line
@@ -257,7 +257,7 @@ int qib_make_rc_req(struct rvt_qp *qp, unsigned long *flags)
			goto bail;
			goto bail;
		/* We are in the error state, flush the work request. */
		/* We are in the error state, flush the work request. */
		smp_read_barrier_depends(); /* see post_one_send() */
		smp_read_barrier_depends(); /* see post_one_send() */
		if (qp->s_last == ACCESS_ONCE(qp->s_head))
		if (qp->s_last == READ_ONCE(qp->s_head))
			goto bail;
			goto bail;
		/* If DMAs are in progress, we can't flush immediately. */
		/* If DMAs are in progress, we can't flush immediately. */
		if (atomic_read(&priv->s_dma_busy)) {
		if (atomic_read(&priv->s_dma_busy)) {
@@ -303,7 +303,8 @@ int qib_make_rc_req(struct rvt_qp *qp, unsigned long *flags)
		newreq = 0;
		newreq = 0;
		if (qp->s_cur == qp->s_tail) {
		if (qp->s_cur == qp->s_tail) {
			/* Check if send work queue is empty. */
			/* Check if send work queue is empty. */
			if (qp->s_tail == qp->s_head)
			smp_read_barrier_depends(); /* see post_one_send() */
			if (qp->s_tail == READ_ONCE(qp->s_head))
				goto bail;
				goto bail;
			/*
			/*
			 * If a fence is requested, wait for previous
			 * If a fence is requested, wait for previous
@@ -1390,7 +1391,7 @@ static void qib_rc_rcv_resp(struct qib_ibport *ibp,


	/* Ignore invalid responses. */
	/* Ignore invalid responses. */
	smp_read_barrier_depends(); /* see post_one_send */
	smp_read_barrier_depends(); /* see post_one_send */
	if (qib_cmp24(psn, ACCESS_ONCE(qp->s_next_psn)) >= 0)
	if (qib_cmp24(psn, READ_ONCE(qp->s_next_psn)) >= 0)
		goto ack_done;
		goto ack_done;


	/* Ignore duplicate responses. */
	/* Ignore duplicate responses. */