diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-01-09 14:23:04 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-01-09 14:23:04 +0000 |
commit | 057f56a57770b0d4350e585ef3e0dc66df99beb6 (patch) | |
tree | 1d3ae1decb5138900da0edfdcb7df5a6621d305e /sys | |
parent | 762f64c401e8c81020cf5fe93c9d3eb6666f5d9f (diff) |
lock->ctx != NULL => lock->ctx
requested by kettenis@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/linux_ww_mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/linux_ww_mutex.h b/sys/dev/pci/drm/linux_ww_mutex.h index fb1b26791f6..4476af7830b 100644 --- a/sys/dev/pci/drm/linux_ww_mutex.h +++ b/sys/dev/pci/drm/linux_ww_mutex.h @@ -164,7 +164,7 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx, bool slow, bo * resources. */ if (slow || ctx == NULL || - (lock->ctx != NULL && ctx->stamp < lock->ctx->stamp)) { + (lock->ctx && ctx->stamp < lock->ctx->stamp)) { int s = msleep(lock, &lock->lock, intr ? PCATCH : 0, ctx ? ctx->ww_class->name : "ww_mutex_lock", 0); |