Re: [Intel-gfx] [PATCH 22/27] drm/i915/gem: Delay context creation

2021-05-04 Thread Daniel Vetter
On Tue, May 04, 2021 at 03:38:06AM +0800, kernel test robot wrote: > Hi Jason, > > Thank you for the patch! Yet something to improve: > > [auto build test ERROR on drm-intel/for-linux-next] > [also build test ERROR on drm-tip/drm-tip drm-exynos/exynos-drm-next > next-20210503] > [cannot apply to

Re: [Intel-gfx] [PATCH 22/27] drm/i915/gem: Delay context creation

2021-05-04 Thread Daniel Vetter
On Mon, May 03, 2021 at 10:57:43AM -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

Re: [Intel-gfx] [PATCH 22/27] drm/i915/gem: Delay context creation

2021-05-03 Thread kernel test robot
Hi Jason, Thank you for the patch! Yet something to improve: [auto build test ERROR on drm-intel/for-linux-next] [also build test ERROR on drm-tip/drm-tip drm-exynos/exynos-drm-next next-20210503] [cannot apply to tegra-drm/drm/tegra/for-next v5.12] [If your patch is applied to the wrong git tre

[Intel-gfx] [PATCH 22/27] drm/i915/gem: Delay context creation

2021-05-03 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.