Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-15 Thread Iago Toral
On Wed, 2017-03-15 at 09:35 +0200, Pohjolainen, Topi wrote: > On Wed, Mar 15, 2017 at 08:23:35AM +0100, Iago Toral wrote: > > > > On Tue, 2017-03-14 at 16:14 +0200, Pohjolainen, Topi wrote: > > > > > > On Tue, Mar 14, 2017 at 04:02:17PM +0200, Pohjolainen, Topi > > > wrote: > > > > > > > > > >

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-15 Thread Pohjolainen, Topi
On Wed, Mar 15, 2017 at 08:23:35AM +0100, Iago Toral wrote: > On Tue, 2017-03-14 at 16:14 +0200, Pohjolainen, Topi wrote: > > On Tue, Mar 14, 2017 at 04:02:17PM +0200, Pohjolainen, Topi wrote: > > > > > > On Tue, Mar 14, 2017 at 02:08:10PM +0100, Iago Toral wrote: > > > > > > > > On Tue, 2017-03-

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-15 Thread Iago Toral
On Tue, 2017-03-14 at 16:14 +0200, Pohjolainen, Topi wrote: > On Tue, Mar 14, 2017 at 04:02:17PM +0200, Pohjolainen, Topi wrote: > > > > On Tue, Mar 14, 2017 at 02:08:10PM +0100, Iago Toral wrote: > > > > > > On Tue, 2017-03-14 at 14:04 +0200, Pohjolainen, Topi wrote: > > > > > > > > On Tue, Mar

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Pohjolainen, Topi
On Tue, Mar 14, 2017 at 04:02:17PM +0200, Pohjolainen, Topi wrote: > On Tue, Mar 14, 2017 at 02:08:10PM +0100, Iago Toral wrote: > > On Tue, 2017-03-14 at 14:04 +0200, Pohjolainen, Topi wrote: > > > On Tue, Mar 14, 2017 at 12:06:16PM +0100, Iago Toral wrote: > > > > > > > > On Tue, 2017-03-14 at 1

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Pohjolainen, Topi
On Tue, Mar 14, 2017 at 02:08:10PM +0100, Iago Toral wrote: > On Tue, 2017-03-14 at 14:04 +0200, Pohjolainen, Topi wrote: > > On Tue, Mar 14, 2017 at 12:06:16PM +0100, Iago Toral wrote: > > > > > > On Tue, 2017-03-14 at 12:01 +0100, Iago Toral wrote: > > > > > > > > On Tue, 2017-03-14 at 11:25 +0

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Iago Toral
On Tue, 2017-03-14 at 14:04 +0200, Pohjolainen, Topi wrote: > On Tue, Mar 14, 2017 at 12:06:16PM +0100, Iago Toral wrote: > > > > On Tue, 2017-03-14 at 12:01 +0100, Iago Toral wrote: > > > > > > On Tue, 2017-03-14 at 11:25 +0200, Pohjolainen, Topi wrote: > > > > > > > > > > > > On Fri, Mar 10,

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Pohjolainen, Topi
On Tue, Mar 14, 2017 at 12:06:16PM +0100, Iago Toral wrote: > On Tue, 2017-03-14 at 12:01 +0100, Iago Toral wrote: > > On Tue, 2017-03-14 at 11:25 +0200, Pohjolainen, Topi wrote: > > > > > > On Fri, Mar 10, 2017 at 01:38:23PM +0100, Iago Toral Quiroga wrote: > > > > > > > > > > > > Growing the r

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Iago Toral
On Tue, 2017-03-14 at 12:01 +0100, Iago Toral wrote: > On Tue, 2017-03-14 at 11:25 +0200, Pohjolainen, Topi wrote: > > > > On Fri, Mar 10, 2017 at 01:38:23PM +0100, Iago Toral Quiroga wrote: > > > > > > > > > Growing the reloc list happens through calling > > > anv_reloc_list_add() > > > or > >

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Iago Toral
On Tue, 2017-03-14 at 11:25 +0200, Pohjolainen, Topi wrote: > On Fri, Mar 10, 2017 at 01:38:23PM +0100, Iago Toral Quiroga wrote: > > > > Growing the reloc list happens through calling anv_reloc_list_add() > > or > > anv_reloc_list_append(). Make sure that we call these through > > helpers > > tha

Re: [Mesa-dev] [PATCH v2 10/24] anv: handle failures when growing reloc lists

2017-03-14 Thread Pohjolainen, Topi
On Fri, Mar 10, 2017 at 01:38:23PM +0100, Iago Toral Quiroga wrote: > Growing the reloc list happens through calling anv_reloc_list_add() or > anv_reloc_list_append(). Make sure that we call these through helpers > that check the result and set the batch error status if needed. > > v2: > - Handl