aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ntb
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2021-08-10 20:30:12 +0000
committerAlexander Motin <mav@FreeBSD.org>2021-08-10 20:37:21 +0000
commitc6902e7796bc78df011131a2b8b024faed884b8f (patch)
tree86efbe2c1a2931b73f8e42205efd7fd6f8d502a6 /sys/dev/ntb
parent50f16247a110d2ace56f1120304616f3e6ad9763 (diff)
downloadsrc-c6902e7796bc78df011131a2b8b024faed884b8f.tar.gz
src-c6902e7796bc78df011131a2b8b024faed884b8f.zip
ntb_transport(4): Mark callouts MP-safe.
The only thing around NTB using Giant lock is NewBus, and these callouts have nothing to do with it. MFC after: 2 weeks
Diffstat (limited to 'sys/dev/ntb')
-rw-r--r--sys/dev/ntb/ntb_transport.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ntb/ntb_transport.c b/sys/dev/ntb/ntb_transport.c
index 90420db0b9aa..276fe604086e 100644
--- a/sys/dev/ntb/ntb_transport.c
+++ b/sys/dev/ntb/ntb_transport.c
@@ -493,8 +493,8 @@ ntb_transport_attach(device_t dev)
for (i = 0; i < nt->qp_count; i++)
ntb_transport_init_queue(nt, i);
- callout_init(&nt->link_work, 0);
- callout_init(&nt->link_watchdog, 0);
+ callout_init(&nt->link_work, 1);
+ callout_init(&nt->link_watchdog, 1);
TASK_INIT(&nt->link_cleanup, 0, ntb_transport_link_cleanup_work, nt);
nt->link_is_up = false;
@@ -639,7 +639,7 @@ ntb_transport_init_queue(struct ntb_transport_ctx *nt, unsigned int qp_num)
qp->tx_max_frame = qmin(transport_mtu, tx_size / 2);
qp->tx_max_entry = tx_size / qp->tx_max_frame;
- callout_init(&qp->link_work, 0);
+ callout_init(&qp->link_work, 1);
callout_init(&qp->rx_full, 1);
mtx_init(&qp->ntb_rx_q_lock, "ntb rx q", NULL, MTX_SPIN);