diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-06-23 19:09:22 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-06-23 19:09:22 +0000 |
commit | a24f2f8dae9c79602b889b057e4bcedbcbcc2a0d (patch) | |
tree | 460f0094794dfffe7a1a7ec32c3b99853c0253de /sys/dev/pv/hyperv.c | |
parent | 671d2eb09b5fd5dafa4d731579801d1a67953b35 (diff) |
Event interrupt handler should call hv_channel_schedule now
Diffstat (limited to 'sys/dev/pv/hyperv.c')
-rw-r--r-- | sys/dev/pv/hyperv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pv/hyperv.c b/sys/dev/pv/hyperv.c index d62ae7d0c4d..6ba01cdc6b9 100644 --- a/sys/dev/pv/hyperv.c +++ b/sys/dev/pv/hyperv.c @@ -698,8 +698,7 @@ hv_event_intr(struct hv_softc *sc) continue; } ch->ch_evcnt.ec_count++; - if (ch->ch_handler) - ch->ch_handler(ch->ch_ctx); + hv_channel_schedule(ch); } } } |