From 6ab8fabfc9a3dcca19cb5a81c07b49b8fc4f81e6 Mon Sep 17 00:00:00 2001 From: mikeb Date: Fri, 23 Jun 2017 19:09:21 +0000 Subject: [PATCH] Event interrupt handler should call hv_channel_schedule now --- sys/dev/pv/hyperv.c | 3 +-- 1 file changed, 1 insertion(+), 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); } } } -- 2.20.1