mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-06 17:50:22 +01:00
drm/fence: shut up lockdep
This commit is contained in:
parent
283eaa2559
commit
c395d27a72
1 changed files with 3 additions and 2 deletions
|
|
@ -520,9 +520,10 @@ void drm_fence_manager_init(struct drm_device * dev)
|
|||
struct drm_fence_class_manager *class;
|
||||
struct drm_fence_driver *fed = dev->driver->fence_driver;
|
||||
int i;
|
||||
unsigned long flags;
|
||||
|
||||
rwlock_init(&fm->lock);
|
||||
write_lock(&fm->lock);
|
||||
write_lock_irqsave(&fm->lock, flags);
|
||||
fm->initialized = 0;
|
||||
if (!fed)
|
||||
goto out_unlock;
|
||||
|
|
@ -541,7 +542,7 @@ void drm_fence_manager_init(struct drm_device * dev)
|
|||
|
||||
atomic_set(&fm->count, 0);
|
||||
out_unlock:
|
||||
write_unlock(&fm->lock);
|
||||
write_unlock_irqrestore(&fm->lock, flags);
|
||||
}
|
||||
|
||||
void drm_fence_manager_takedown(struct drm_device * dev)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue