Re: [Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-18 Thread Kenneth Graunke
On Thursday, January 18, 2018 7:05:46 PM PST Jason Ekstrand wrote: > On Thu, Jan 18, 2018 at 4:30 PM, Kenneth Graunke > wrote: > > > On Friday, January 12, 2018 1:28:00 AM PST Chris Wilson wrote: > > > Quoting Jason Ekstrand (2018-01-12 01:40:52) > > > > This helper should be used carefully as se

Re: [Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-18 Thread Jason Ekstrand
On Thu, Jan 18, 2018 at 4:30 PM, Kenneth Graunke wrote: > On Friday, January 12, 2018 1:28:00 AM PST Chris Wilson wrote: > > Quoting Jason Ekstrand (2018-01-12 01:40:52) > > > This helper should be used carefully as setting tiling is a racy > > > operation since it potentially interacts with othe

Re: [Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-18 Thread Kenneth Graunke
On Friday, January 12, 2018 1:28:00 AM PST Chris Wilson wrote: > Quoting Jason Ekstrand (2018-01-12 01:40:52) > > This helper should be used carefully as setting tiling is a racy > > operation since it potentially interacts with other processes. Still, > > it is a useful thing to be able to do. >

Re: [Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-12 Thread Jason Ekstrand
On Fri, Jan 12, 2018 at 1:28 AM, Chris Wilson wrote: > Quoting Jason Ekstrand (2018-01-12 01:40:52) > > This helper should be used carefully as setting tiling is a racy > > operation since it potentially interacts with other processes. Still, > > it is a useful thing to be able to do. > > > > Cc

Re: [Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-12 Thread Chris Wilson
Quoting Jason Ekstrand (2018-01-12 01:40:52) > This helper should be used carefully as setting tiling is a racy > operation since it potentially interacts with other processes. Still, > it is a useful thing to be able to do. > > Cc: mesa-sta...@lists.freedesktop.org > --- > src/mesa/drivers/dri/

[Mesa-dev] [PATCH 3/4] i965/bufmgr: Add a set_tiling helper

2018-01-11 Thread Jason Ekstrand
This helper should be used carefully as setting tiling is a racy operation since it potentially interacts with other processes. Still, it is a useful thing to be able to do. Cc: mesa-sta...@lists.freedesktop.org --- src/mesa/drivers/dri/i965/brw_bufmgr.c | 27 +++ src/mes