diff options
author | 2017-02-06 21:52:02 +0000 | |
---|---|---|
committer | 2017-02-06 21:52:02 +0000 | |
commit | ac3f660d3b1757b3130f5b9bd9f4f4cc3f13110e (patch) | |
tree | 3d697f7251f608d84d762275be17dd079e6b5511 /sys/dev/pv/xen.c | |
parent | Fixup a few errors, make detaching more robust (diff) | |
download | wireguard-openbsd-ac3f660d3b1757b3130f5b9bd9f4f4cc3f13110e.tar.xz wireguard-openbsd-ac3f660d3b1757b3130f5b9bd9f4f4cc3f13110e.zip |
XST_POLL turned out to be pretty useless since it's only set when cold
Diffstat (limited to 'sys/dev/pv/xen.c')
-rw-r--r-- | sys/dev/pv/xen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pv/xen.c b/sys/dev/pv/xen.c index b09ec2aa041..7208143372c 100644 --- a/sys/dev/pv/xen.c +++ b/sys/dev/pv/xen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xen.c,v 1.74 2017/02/06 21:43:48 mikeb Exp $ */ +/* $OpenBSD: xen.c,v 1.75 2017/02/06 21:52:02 mikeb Exp $ */ /* * Copyright (c) 2015 Mike Belopuhov @@ -1299,7 +1299,6 @@ xen_probe_devices(struct xen_softc *sc) memset(&xst, 0, sizeof(xst)); xst.xst_id = 0; xst.xst_cookie = sc->sc_xs; - xst.xst_flags |= XST_POLL; if ((error = xs_cmd(&xst, XS_LIST, "device", &iovp1, &iov1_cnt)) != 0) return (error); |