Re: [Mesa-dev] [PATCH 1/8] util: Add a virtual memory allocator

2018-05-09 Thread Jordan Justen
On 2018-05-09 08:20:59, Scott D Phillips wrote: > Jason Ekstrand writes: > > > On Tue, May 8, 2018 at 10:58 AM, Jordan Justen > > wrote: > > > >> On 2018-05-07 17:30:43, Scott D Phillips wrote: > >> > From: Jason Ekstrand

Re: [Mesa-dev] [PATCH 1/8] util: Add a virtual memory allocator

2018-05-09 Thread Scott D Phillips
Jason Ekstrand writes: > On Tue, May 8, 2018 at 10:58 AM, Jordan Justen > wrote: > >> On 2018-05-07 17:30:43, Scott D Phillips wrote: >> > From: Jason Ekstrand >> > >> > This is simple linear-walk first-fit allocator

Re: [Mesa-dev] [PATCH 1/8] util: Add a virtual memory allocator

2018-05-08 Thread Jason Ekstrand
On Tue, May 8, 2018 at 10:58 AM, Jordan Justen wrote: > On 2018-05-07 17:30:43, Scott D Phillips wrote: > > From: Jason Ekstrand > > > > This is simple linear-walk first-fit allocator roughly based on the > > allocator in the radeon winsys

Re: [Mesa-dev] [PATCH 1/8] util: Add a virtual memory allocator

2018-05-08 Thread Jordan Justen
On 2018-05-07 17:30:43, Scott D Phillips wrote: > From: Jason Ekstrand > > This is simple linear-walk first-fit allocator roughly based on the > allocator in the radeon winsys code. This allocator has two primary > functional differences: > > 1) It cleanly returns 0

[Mesa-dev] [PATCH 1/8] util: Add a virtual memory allocator

2018-05-07 Thread Scott D Phillips
From: Jason Ekstrand This is simple linear-walk first-fit allocator roughly based on the allocator in the radeon winsys code. This allocator has two primary functional differences: 1) It cleanly returns 0 on allocation failure 2) It allocates addresses top-down