search for: ttm_bo_call_rcu_fn

Displaying 1 result from an estimated 1 matches for "ttm_bo_call_rcu_fn".

2020 Oct 24
1
kvm+nouveau induced lockdep gripe
...* Members protected by the bo::resv::reserved lock. --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -547,10 +547,10 @@ static void ttm_bo_delayed_workqueue(str ((HZ / 100) < 1) ? 1 : HZ / 100); } -static void ttm_bo_release(struct kref *kref) +static void ttm_bo_call_rcu_fn(struct rcu_head *rcu) { - struct ttm_buffer_object *bo = - container_of(kref, struct ttm_buffer_object, kref); + struct ttm_buffer_object *bo = container_of(rcu, + struct ttm_buffer_object, rcu); struct ttm_bo_device *bdev = bo->bdev; struct ttm_mem_type_manager *man = &bdev-&g...