summaryrefslogtreecommitdiffstats
path: root/sys/dev/ntb
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2016-06-04 00:08:37 +0000
committermav <mav@FreeBSD.org>2016-06-04 00:08:37 +0000
commita0753989c6caa9b2c4538ac6237b6a857563c6f1 (patch)
tree6d04ba5feada2061669294aecec8d3cce2c4e11a /sys/dev/ntb
parent356a290b3ddb28e5a3a577d0bbc5307a6d39d3ef (diff)
downloadFreeBSD-src-a0753989c6caa9b2c4538ac6237b6a857563c6f1.zip
FreeBSD-src-a0753989c6caa9b2c4538ac6237b6a857563c6f1.tar.gz
When negotiating MSIX parameters, give other head time to see our
NTB_MSIX_RECEIVED status, before making upper layers overwrite it. This is not completely perfect, but now it works better then before. MFC after: 2 weeks Sponsored by: iXsystems, Inc.
Diffstat (limited to 'sys/dev/ntb')
-rw-r--r--sys/dev/ntb/ntb_hw/ntb_hw.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/sys/dev/ntb/ntb_hw/ntb_hw.c b/sys/dev/ntb/ntb_hw/ntb_hw.c
index 4359d2a..13cfad1 100644
--- a/sys/dev/ntb/ntb_hw/ntb_hw.c
+++ b/sys/dev/ntb/ntb_hw/ntb_hw.c
@@ -2801,6 +2801,8 @@ ntb_exchange_msix(void *ctx)
ntb = ctx;
+ if (ntb->peer_msix_good)
+ goto msix_good;
if (ntb->peer_msix_done)
goto msix_done;
@@ -2832,16 +2834,21 @@ msix_done:
goto reschedule;
ntb->peer_msix_good = true;
+ /* Give peer time to see our NTB_MSIX_RECEIVED. */
+ goto reschedule;
+msix_good:
ntb_poll_link(ntb);
ntb_link_event(ntb);
return;
reschedule:
ntb->lnk_sta = pci_read_config(ntb->device, ntb->reg->lnk_sta, 2);
- if (_xeon_link_is_up(ntb))
- callout_reset(&ntb->peer_msix_work, hz / 100, ntb_exchange_msix, ntb);
- else
+ if (_xeon_link_is_up(ntb)) {
+ callout_reset(&ntb->peer_msix_work,
+ hz * (ntb->peer_msix_good ? 2 : 1) / 100,
+ ntb_exchange_msix, ntb);
+ } else
ntb_spad_clear(ntb);
}
OpenPOWER on IntegriCloud