[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [win-pv-devel] [PATCH] Fix ASSERTion failure
Commit 6aef63e0 "Add optional log level settings" introduced an ASSERTion failure during unload of XENBUS, because the ConsoleLogLevel field of the driver structure was not being zeroed. This patch fixes the problem. Signed-off-by: Paul Durrant <paul.durrant@xxxxxxxxxx> --- src/xenbus/driver.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xenbus/driver.c b/src/xenbus/driver.c index 060fc33..50c7c5e 100644 --- a/src/xenbus/driver.c +++ b/src/xenbus/driver.c @@ -597,6 +597,8 @@ DriverUnload( RtlZeroMemory(&Driver.List, sizeof (LIST_ENTRY)); RtlZeroMemory(&Driver.Mutex, sizeof (MUTEX)); + __DriverSetConsoleLogLevel(0); + ParametersKey = __DriverGetParametersKey(); RegistryCloseKey(ParametersKey); -- 2.5.3 _______________________________________________ win-pv-devel mailing list win-pv-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/cgi-bin/mailman/listinfo/win-pv-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |