summaryrefslogtreecommitdiff
path: root/datapath-windows
diff options
context:
space:
mode:
Diffstat (limited to 'datapath-windows')
-rw-r--r--datapath-windows/ovsext/Switch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/datapath-windows/ovsext/Switch.c b/datapath-windows/ovsext/Switch.c
index 28c8ecf25..1ac4fa77c 100644
--- a/datapath-windows/ovsext/Switch.c
+++ b/datapath-windows/ovsext/Switch.c
@@ -143,7 +143,7 @@ OvsExtAttach(NDIS_HANDLE ndisFilterHandle,
KeMemoryBarrier();
cleanup:
- gOvsInAttach = FALSE;
+ InterlockedExchange(&gOvsInAttach, 0);
if (status != NDIS_STATUS_SUCCESS) {
if (switchContext != NULL) {
OvsDeleteSwitch(switchContext);
@@ -516,7 +516,7 @@ OvsReleaseSwitchContext(POVS_SWITCH_CONTEXT switchContext)
LONG icxRef = 0;
do {
- ref = gOvsSwitchContextRefCount;
+ ref = InterlockedAdd(&gOvsSwitchContextRefCount, 0);
newRef = (0 == ref) ? 0 : ref - 1;
icxRef = InterlockedCompareExchange(&gOvsSwitchContextRefCount,
newRef,
@@ -538,7 +538,7 @@ OvsAcquireSwitchContext(VOID)
BOOLEAN ret = FALSE;
do {
- ref = gOvsSwitchContextRefCount;
+ ref = InterlockedAdd(&gOvsSwitchContextRefCount, 0);
newRef = (0 == ref) ? 0 : ref + 1;
icxRef = InterlockedCompareExchange(&gOvsSwitchContextRefCount,
newRef,