Re: [Intel-gfx] [PATCH] aubinator: Define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR if unavailable

2017-03-16 Thread Jason Ekstrand
On Thu, Mar 16, 2017 at 3:51 AM, Petri Latvala wrote: > On Wed, Mar 15, 2017 at 09:09:31AM -0700, Jason Ekstrand wrote: > > +#ifndef DRM_IOCTL_I915_GEM_EXECBUFFER2_WR > > +#define DRM_IOCTL_I915_GEM_EXECBUFFER2_WRDRM_IOWR(DRM_COMMAND_BASE > + DRM_I915_GEM_EXECBUFFER2_WR, struct drm_i915_gem_e

Re: [Intel-gfx] [PATCH] aubinator: Define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR if unavailable

2017-03-16 Thread Petri Latvala
On Wed, Mar 15, 2017 at 09:09:31AM -0700, Jason Ekstrand wrote: > +#ifndef DRM_IOCTL_I915_GEM_EXECBUFFER2_WR > +#define DRM_IOCTL_I915_GEM_EXECBUFFER2_WRDRM_IOWR(DRM_COMMAND_BASE + > DRM_I915_GEM_EXECBUFFER2_WR, struct drm_i915_gem_execbuffer2) > +#endif If DRM_IOCTL_I915_GEM_EXECBUFFER2_WR i

[Intel-gfx] [PATCH] aubinator: Define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR if unavailable

2017-03-15 Thread Jason Ekstrand
Depending on what version of drm_i915.h you have, you may not have this #define but it's required in order to properly dump aubs from newer versions of mesa. --- I have no idea what the back-porting procedure is for IGT. If someone could provide me with a tagline to ensure it lands in stable, tha