Author: markj Date: Wed May 9 19:54:34 2018 New Revision: 333429 URL: https://svnweb.freebsd.org/changeset/base/333429
Log: Fix bxe(4) netdump rx polling. Reviewed by: cem, rstone X-MFC with: r333287 Sponsored by: Dell EMC Isilon Modified: head/sys/dev/bxe/bxe.c Modified: head/sys/dev/bxe/bxe.c ============================================================================== --- head/sys/dev/bxe/bxe.c Wed May 9 19:52:33 2018 (r333428) +++ head/sys/dev/bxe/bxe.c Wed May 9 19:54:34 2018 (r333429) @@ -19240,7 +19240,7 @@ bxe_netdump_poll(struct ifnet *ifp, int count) return (ENOENT); for (i = 0; i < sc->num_queues; i++) - (void)bxe_rxeof(sc, &sc->fp[0]); + (void)bxe_rxeof(sc, &sc->fp[i]); (void)bxe_txeof(sc, &sc->fp[0]); return (0); } _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"