Index: sys/external/bsd/drm2/linux/linux_ww_mutex.c =================================================================== RCS file: /cvsroot/src/sys/external/bsd/drm2/linux/linux_ww_mutex.c,v retrieving revision 1.2 diff -p -u -r1.2 linux_ww_mutex.c --- sys/external/bsd/drm2/linux/linux_ww_mutex.c 21 May 2015 21:55:55 -0000 1.2 +++ sys/external/bsd/drm2/linux/linux_ww_mutex.c 25 Aug 2017 13:45:58 -0000 @@ -334,7 +334,6 @@ retry: switch (mutex->wwm_state) { case WW_UNLOCKED: mutex->wwm_state = WW_OWNED; mutex->wwm_u.owner = curlwp; - WW_LOCKED(mutex); break; case WW_OWNED: KASSERTMSG((mutex->wwm_u.owner != curlwp), @@ -356,6 +355,7 @@ retry: switch (mutex->wwm_state) { } KASSERT(mutex->wwm_state == WW_OWNED); KASSERT(mutex->wwm_u.owner == curlwp); + WW_LOCKED(mutex); mutex_exit(&mutex->wwm_lock); } @@ -369,7 +369,6 @@ retry: switch (mutex->wwm_state) { case WW_UNLOCKED: mutex->wwm_state = WW_OWNED; mutex->wwm_u.owner = curlwp; - WW_LOCKED(mutex); break; case WW_OWNED: KASSERTMSG((mutex->wwm_u.owner != curlwp), @@ -395,6 +394,7 @@ retry: switch (mutex->wwm_state) { } KASSERT(mutex->wwm_state == WW_OWNED); KASSERT(mutex->wwm_u.owner == curlwp); + WW_LOCKED(mutex); ret = 0; out: mutex_exit(&mutex->wwm_lock); return ret; @@ -433,7 +433,6 @@ retry: switch (mutex->wwm_state) { WW_WANTLOCK(mutex); mutex->wwm_state = WW_CTX; mutex->wwm_u.ctx = ctx; - WW_LOCKED(mutex); goto locked; case WW_OWNED: WW_WANTLOCK(mutex); @@ -490,10 +489,11 @@ retry: switch (mutex->wwm_state) { */ ww_mutex_lock_wait(mutex, ctx); -locked: ctx->wwx_acquired++; - KASSERT((mutex->wwm_state == WW_CTX) || +locked: KASSERT((mutex->wwm_state == WW_CTX) || (mutex->wwm_state == WW_WANTOWN)); KASSERT(mutex->wwm_u.ctx == ctx); + WW_LOCKED(mutex); + ctx->wwx_acquired++; mutex_exit(&mutex->wwm_lock); return 0; } @@ -531,7 +531,6 @@ retry: switch (mutex->wwm_state) { WW_WANTLOCK(mutex); mutex->wwm_state = WW_CTX; mutex->wwm_u.ctx = ctx; - WW_LOCKED(mutex); goto locked; case WW_OWNED: WW_WANTLOCK(mutex); @@ -597,6 +596,7 @@ retry: switch (mutex->wwm_state) { locked: KASSERT((mutex->wwm_state == WW_CTX) || (mutex->wwm_state == WW_WANTOWN)); KASSERT(mutex->wwm_u.ctx == ctx); + WW_LOCKED(mutex); ctx->wwx_acquired++; ret = 0; out: mutex_exit(&mutex->wwm_lock); @@ -634,7 +634,6 @@ retry: switch (mutex->wwm_state) { case WW_UNLOCKED: mutex->wwm_state = WW_CTX; mutex->wwm_u.ctx = ctx; - WW_LOCKED(mutex); goto locked; case WW_OWNED: KASSERTMSG((mutex->wwm_u.owner != curlwp), @@ -665,6 +664,7 @@ retry: switch (mutex->wwm_state) { locked: KASSERT((mutex->wwm_state == WW_CTX) || (mutex->wwm_state == WW_WANTOWN)); KASSERT(mutex->wwm_u.ctx == ctx); + WW_LOCKED(mutex); ctx->wwx_acquired++; mutex_exit(&mutex->wwm_lock); } @@ -699,7 +699,6 @@ retry: switch (mutex->wwm_state) { case WW_UNLOCKED: mutex->wwm_state = WW_CTX; mutex->wwm_u.ctx = ctx; - WW_LOCKED(mutex); goto locked; case WW_OWNED: KASSERTMSG((mutex->wwm_u.owner != curlwp), @@ -736,6 +735,7 @@ retry: switch (mutex->wwm_state) { locked: KASSERT((mutex->wwm_state == WW_CTX) || (mutex->wwm_state == WW_WANTOWN)); KASSERT(mutex->wwm_u.ctx == ctx); + WW_LOCKED(mutex); ctx->wwx_acquired++; ret = 0; out: mutex_exit(&mutex->wwm_lock);