Re: [PATCH 24/29] drm/i915/gem: Delay context creation

2021-06-03 Thread Daniel Vetter
On Thu, Jun 3, 2021 at 12:55 AM Jason Ekstrand wrote: > > On Mon, May 31, 2021 at 4:50 AM Daniel Vetter wrote: > > > > On Thu, May 27, 2021 at 11:26:45AM -0500, Jason Ekstrand wrote: > > > @@ -2692,16 +2792,41 @@ int i915_gem_context_setparam_ioctl(struct > > > drm_device *dev, void *data, > > >

Re: [PATCH 24/29] drm/i915/gem: Delay context creation

2021-06-02 Thread Jason Ekstrand
On Mon, May 31, 2021 at 4:50 AM Daniel Vetter wrote: > > On Thu, May 27, 2021 at 11:26:45AM -0500, Jason Ekstrand wrote: > > The current context uAPI allows for two methods of setting context > > parameters: SET_CONTEXT_PARAM and CONTEXT_CREATE_EXT_SETPARAM. The > > former is allowed to be called

Re: [PATCH 24/29] drm/i915/gem: Delay context creation

2021-05-31 Thread Daniel Vetter
On Thu, May 27, 2021 at 11:26:45AM -0500, Jason Ekstrand wrote: > The current context uAPI allows for two methods of setting context > parameters: SET_CONTEXT_PARAM and CONTEXT_CREATE_EXT_SETPARAM. The > former is allowed to be called at any time while the later happens as > part of GEM_CONTEXT_CR

[PATCH 24/29] drm/i915/gem: Delay context creation

2021-05-27 Thread Jason Ekstrand
The current context uAPI allows for two methods of setting context parameters: SET_CONTEXT_PARAM and CONTEXT_CREATE_EXT_SETPARAM. The former is allowed to be called at any time while the later happens as part of GEM_CONTEXT_CREATE. Currently, everything settable via one is settable via the other.