Re: [Mesa-dev] [RFC PATCH 09/14] anv: Validate the list of BOs from the block pool.

2018-12-12 Thread Jason Ekstrand
On Wed, Dec 12, 2018 at 7:15 PM Rafael Antognolli < rafael.antogno...@intel.com> wrote: > On Mon, Dec 10, 2018 at 01:49:43PM -0600, Jason Ekstrand wrote: > > On Fri, Dec 7, 2018 at 6:06 PM Rafael Antognolli < > rafael.antogno...@intel.com> > > wrote: > > > > We now have multiple BOs in the blo

Re: [Mesa-dev] [RFC PATCH 09/14] anv: Validate the list of BOs from the block pool.

2018-12-12 Thread Rafael Antognolli
On Mon, Dec 10, 2018 at 01:49:43PM -0600, Jason Ekstrand wrote: > On Fri, Dec 7, 2018 at 6:06 PM Rafael Antognolli > wrote: > > We now have multiple BOs in the block pool, but sometimes we still > reference only the first one in some instructions, and use relative > offsets in others.

Re: [Mesa-dev] [RFC PATCH 09/14] anv: Validate the list of BOs from the block pool.

2018-12-10 Thread Jason Ekstrand
On Fri, Dec 7, 2018 at 6:06 PM Rafael Antognolli < rafael.antogno...@intel.com> wrote: > We now have multiple BOs in the block pool, but sometimes we still > reference only the first one in some instructions, and use relative > offsets in others. So we must be sure to add all the BOs from the bloc

[Mesa-dev] [RFC PATCH 09/14] anv: Validate the list of BOs from the block pool.

2018-12-07 Thread Rafael Antognolli
We now have multiple BOs in the block pool, but sometimes we still reference only the first one in some instructions, and use relative offsets in others. So we must be sure to add all the BOs from the block pool to the validation list when submitting commands. --- src/intel/vulkan/anv_batch_chain.