svn commit: r333429 - head/sys/dev/bxe
Mark Johnston
markj at FreeBSD.org
Wed May 9 19:54:35 UTC 2018
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);
}
More information about the svn-src-all
mailing list