[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [win-pv-devel] [PATCH 04/15] EVTCHN Bind method should check that the channel is active
Any method which performs ABI operations should check whether the channel is active. Signed-off-by: Paul Durrant <paul.durrant@xxxxxxxxxx> --- src/xenbus/evtchn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xenbus/evtchn.c b/src/xenbus/evtchn.c index 16060aa..acbb84c 100644 --- a/src/xenbus/evtchn.c +++ b/src/xenbus/evtchn.c @@ -513,6 +513,9 @@ EvtchnBind( KeAcquireSpinLock(&Channel->Lock, &Irql); + if (!Channel->Active) + goto done; + if (Channel->Cpu == Cpu) goto done; -- 2.1.1 _______________________________________________ win-pv-devel mailing list win-pv-devel@xxxxxxxxxxxxxxxxxxxx http://lists.xenproject.org/cgi-bin/mailman/listinfo/win-pv-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |