git: f6138d93b511 - stable/13 - if_epair: build fix
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 20 Mar 2022 05:20:20 UTC
The branch stable/13 has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=f6138d93b5115ff560b24200d1ea002cdc46bb64
commit f6138d93b5115ff560b24200d1ea002cdc46bb64
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2022-03-17 02:35:13 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2022-03-20 00:25:03 +0000
if_epair: build fix
66acf7685b failed to build on riscv (and mips). This is because the
atomic_testandset_int() (and friends) functions do not exist there.
Happily those platforms do have the long variant, so switch to that.
PR: 262571
MFC after: 3 days
(cherry picked from commit 0bf7acd6b7047537a38e2de391a461e4e8956630)
---
sys/net/if_epair.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sys/net/if_epair.c b/sys/net/if_epair.c
index d8f51c951913..ef9be94285bc 100644
--- a/sys/net/if_epair.c
+++ b/sys/net/if_epair.c
@@ -112,7 +112,7 @@ struct epair_queue {
int id;
struct buf_ring *rxring[2];
volatile int ridx; /* 0 || 1 */
- volatile int state; /* taskqueue coordination */
+ volatile long state; /* taskqueue coordination */
struct task tx_task;
struct epair_softc *sc;
};
@@ -181,8 +181,8 @@ epair_tx_start_deferred(void *arg, int pending)
} while (!atomic_fcmpset_int(&q->ridx, &ridx, nidx));
epair_if_input(sc, q, ridx);
- atomic_clear_int(&q->state, (1 << BIT_QUEUE_TASK));
- if (atomic_testandclear_int(&q->state, BIT_MBUF_QUEUED))
+ atomic_clear_long(&q->state, (1 << BIT_QUEUE_TASK));
+ if (atomic_testandclear_long(&q->state, BIT_MBUF_QUEUED))
taskqueue_enqueue(epair_tasks.tq[q->id], &q->tx_task);
if_rele(sc->ifp);
@@ -248,7 +248,7 @@ epair_menq(struct mbuf *m, struct epair_softc *osc)
#endif
q = &osc->queues[bucket];
- atomic_set_int(&q->state, (1 << BIT_MBUF_QUEUED));
+ atomic_set_long(&q->state, (1 << BIT_MBUF_QUEUED));
ridx = atomic_load_int(&q->ridx);
ret = buf_ring_enqueue(q->rxring[ridx], m);
if (ret != 0) {
@@ -270,7 +270,7 @@ epair_menq(struct mbuf *m, struct epair_softc *osc)
/* Someone else received the packet. */
if_inc_counter(oifp, IFCOUNTER_IPACKETS, 1);
- if (!atomic_testandset_int(&q->state, BIT_QUEUE_TASK))
+ if (!atomic_testandset_long(&q->state, BIT_QUEUE_TASK))
taskqueue_enqueue(epair_tasks.tq[bucket], &q->tx_task);
return (0);