https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219428
Kaho Toshikazu <k...@elam.kais.kyoto-u.ac.jp> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |k...@elam.kais.kyoto-u.ac.j | |p --- Comment #8 from Kaho Toshikazu <k...@elam.kais.kyoto-u.ac.jp> --- (In reply to gitdev from comment #7) The panic you met is unrelated to the original report. Please try this patch. Index: sys/dev/e1000/if_em.c =================================================================== --- sys/dev/e1000/if_em.c (revision 322833) +++ sys/dev/e1000/if_em.c (working copy) @@ -797,6 +797,8 @@ scctx->isc_txrx = &em_txrx; scctx->isc_capenable = EM_CAPS; scctx->isc_tx_csum_flags = CSUM_TCP | CSUM_UDP | CSUM_IP_TSO; + if (adapter->hw.mac.type != e1000_82574) + scctx->isc_msix_bar = 0; } else { scctx->isc_txqsizes[0] = roundup2((scctx->isc_ntxd[0] + 1) * sizeof(struct e1000_tx_desc), EM_DBA_ALIGN); scctx->isc_rxqsizes[0] = roundup2((scctx->isc_nrxd[0] + 1) * sizeof(struct e1000_rx_desc), EM_DBA_ALIGN); -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-net@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"