diff options
author | 2015-08-24 16:38:43 +0000 | |
---|---|---|
committer | 2015-08-24 16:38:43 +0000 | |
commit | 806fe44f3949eb4d0ec9d5a5a6f3fdc9d04ddeb5 (patch) | |
tree | b14e47a0c2d64ae3417dfdfb67e770c3d1e475fa /sys | |
parent | Rework the code to decide when to perform DAD to no longer rely on the (diff) | |
download | wireguard-openbsd-806fe44f3949eb4d0ec9d5a5a6f3fdc9d04ddeb5.tar.xz wireguard-openbsd-806fe44f3949eb4d0ec9d5a5a6f3fdc9d04ddeb5.zip |
Workaround for slow bm(4) from NetBSD PR 33667 via Donovan Watteau on
bugs@.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/dev/if_bm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/macppc/dev/if_bm.c b/sys/arch/macppc/dev/if_bm.c index d950b1866b5..9e3d862b9d0 100644 --- a/sys/arch/macppc/dev/if_bm.c +++ b/sys/arch/macppc/dev/if_bm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bm.c,v 1.34 2015/07/08 07:21:49 mpi Exp $ */ +/* $OpenBSD: if_bm.c,v 1.35 2015/08/24 16:38:43 mpi Exp $ */ /* $NetBSD: if_bm.c,v 1.1 1999/01/01 01:27:52 tsubai Exp $ */ /*- @@ -558,6 +558,8 @@ next: cmd->d_resid = 0; sc->sc_rxlast = i + 1; } + bmac_mediachange(ifp); + dbdma_continue(sc->sc_rxdma); if_input(ifp, &ml); |