diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-02-08 16:17:32 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-02-08 16:17:32 +0000 |
commit | b948859d26c1443125d43c04c2056b1fd779cbb4 (patch) | |
tree | 6afc960d6b0a0aac12af06a0ae9c81a82fa1fb81 /sys | |
parent | 831d3b3ec9b67afc77d3f6d1a829e501cc02322d (diff) |
Switch to Xen interrupt barrier
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pv/if_xnf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pv/if_xnf.c b/sys/dev/pv/if_xnf.c index 4a2ea2040f9..c316e1b5dec 100644 --- a/sys/dev/pv/if_xnf.c +++ b/sys/dev/pv/if_xnf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xnf.c,v 1.49 2017/02/06 21:43:48 mikeb Exp $ */ +/* $OpenBSD: if_xnf.c,v 1.50 2017/02/08 16:17:31 mikeb Exp $ */ /* * Copyright (c) 2015, 2016 Mike Belopuhov @@ -473,7 +473,7 @@ xnf_stop(struct xnf_softc *sc) ifp->if_timer = 0; ifq_barrier(&ifp->if_snd); - intr_barrier(&sc->sc_xih); + xen_intr_barrier(sc->sc_xih); ifq_clr_oactive(&ifp->if_snd); |