[Intel-gfx] [PATCH 03/10] drm/i915: Make GEM contexts track DRM clients

2020-03-18 Thread Tvrtko Ursulin
From: Tvrtko Ursulin If we make GEM contexts keep a reference to i915_drm_client for the whole of their lifetime, we can consolidate the current task pid and name usage by getting it from the client. v2: * Don't bother supporting selftests contexts from debugfs. (Chris) Signed-off-by: Tvrtko U

Re: [Intel-gfx] [PATCH 03/10] drm/i915: Make GEM contexts track DRM clients

2020-03-18 Thread Chris Wilson
Quoting Tvrtko Ursulin (2020-03-18 12:11:32) > From: Tvrtko Ursulin > > If we make GEM contexts keep a reference to i915_drm_client for the whole > of their lifetime, we can consolidate the current task pid and name usage > by getting it from the client. > > v2: > * Don't bother supporting self