Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-17 Thread David Hildenbrand
On 17.01.24 15:44, Mark Kanda wrote: On 1/9/24 8:25 AM, David Hildenbrand wrote: On 09.01.24 15:15, Daniel P. Berrangé wrote: On Tue, Jan 09, 2024 at 03:02:00PM +0100, David Hildenbrand wrote: On 08.01.24 19:40, Mark Kanda wrote: On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-17 Thread Mark Kanda
On 1/9/24 8:25 AM, David Hildenbrand wrote: On 09.01.24 15:15, Daniel P. Berrangé wrote: On Tue, Jan 09, 2024 at 03:02:00PM +0100, David Hildenbrand wrote: On 08.01.24 19:40, Mark Kanda wrote: On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24 16:10, Mark Kanda wrote: Refactor the

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-09 Thread Mark Kanda
On 1/9/24 8:25 AM, David Hildenbrand wrote: On 09.01.24 15:15, Daniel P. Berrangé wrote: On Tue, Jan 09, 2024 at 03:02:00PM +0100, David Hildenbrand wrote: On 08.01.24 19:40, Mark Kanda wrote: On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24 16:10, Mark Kanda wrote: Refactor the

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-09 Thread David Hildenbrand
On 09.01.24 15:15, Daniel P. Berrangé wrote: On Tue, Jan 09, 2024 at 03:02:00PM +0100, David Hildenbrand wrote: On 08.01.24 19:40, Mark Kanda wrote: On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24 16:10, Mark Kanda wrote: Refactor the memory prealloc threads support: - Make memset

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-09 Thread Daniel P . Berrangé
On Tue, Jan 09, 2024 at 03:02:00PM +0100, David Hildenbrand wrote: > On 08.01.24 19:40, Mark Kanda wrote: > > On 1/8/24 9:40 AM, David Hildenbrand wrote: > > > On 08.01.24 16:10, Mark Kanda wrote: > > > > Refactor the memory prealloc threads support: > > > > - Make memset context a global qlist >

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-09 Thread David Hildenbrand
On 08.01.24 19:40, Mark Kanda wrote: On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24 16:10, Mark Kanda wrote: Refactor the memory prealloc threads support: - Make memset context a global qlist - Move the memset thread join/cleanup code to a separate routine This is functionally

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-08 Thread Mark Kanda
On 1/8/24 9:40 AM, David Hildenbrand wrote: On 08.01.24 16:10, Mark Kanda wrote: Refactor the memory prealloc threads support: - Make memset context a global qlist - Move the memset thread join/cleanup code to a separate routine This is functionally equivalent and facilitates multiple memset

Re: [PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-08 Thread David Hildenbrand
On 08.01.24 16:10, Mark Kanda wrote: Refactor the memory prealloc threads support: - Make memset context a global qlist - Move the memset thread join/cleanup code to a separate routine This is functionally equivalent and facilitates multiple memset contexts (used in a subsequent patch).

[PATCH v1 1/2] oslib-posix: refactor memory prealloc threads

2024-01-08 Thread Mark Kanda
Refactor the memory prealloc threads support: - Make memset context a global qlist - Move the memset thread join/cleanup code to a separate routine This is functionally equivalent and facilitates multiple memset contexts (used in a subsequent patch). Signed-off-by: Mark Kanda ---