Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Aug 2017 02:51:33 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-net@FreeBSD.org
Subject:   [Bug 219428] em network driver broken in current
Message-ID:  <bug-219428-2472-hbigsn4GNi@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-219428-2472@https.bugs.freebsd.org/bugzilla/>
References:  <bug-219428-2472@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219428

Kaho Toshikazu <kaho@elam.kais.kyoto-u.ac.jp> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kaho@elam.kais.kyoto-u.ac.j
                   |                            |p

--- Comment #8 from Kaho Toshikazu <kaho@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.


Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-219428-2472-hbigsn4GNi>