Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F162970191
D26581.id77610.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
606 B
Referenced Files
None
Subscribers
None
D26581.id77610.diff
View Options
Index: sys/dev/cxgbe/crypto/t4_crypto.c
===================================================================
--- sys/dev/cxgbe/crypto/t4_crypto.c
+++ sys/dev/cxgbe/crypto/t4_crypto.c
@@ -2193,7 +2193,14 @@
sc->ports[port].tx_channel_id = port;
_Static_assert(sizeof(sc->port_mask) * NBBY >= MAX_NPORTS - 1,
"Too many ports to fit in port_mask");
- sc->port_mask |= 1u << port;
+
+ /*
+ * Under some workloads, the NIC has been observed to complete
+ * requests on port 1 incorrectly, so only enable port 0 by
+ * default.
+ */
+ if (port == 0)
+ sc->port_mask |= 1u << port;
}
static int
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jul 19, 7:39 PM (17 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
35246622
Default Alt Text
D26581.id77610.diff (606 B)
Attached To
Mode
D26581: ccr: Disable requests on port 1 when needed to workaround a firmware bug.
Attached
Detach File
Event Timeline
Log In to Comment