Re: [PATCH v2 3/6] util/oslib-posix: Don't create too many threads with small memory or little pages

2021-07-28 Thread Pankaj Gupta
> Let's limit the number of threads to something sane, especially that > - We don't have more threads than the number of pages we have > - We don't have threads that initialize small (< 64 MiB) memory > > Signed-off-by: David Hildenbrand > --- > util/oslib-posix.c | 12 ++-- > 1 file

Re: [PATCH v2 3/6] util/oslib-posix: Don't create too many threads with small memory or little pages

2021-07-27 Thread Dr. David Alan Gilbert
* David Hildenbrand (da...@redhat.com) wrote: > Let's limit the number of threads to something sane, especially that > - We don't have more threads than the number of pages we have > - We don't have threads that initialize small (< 64 MiB) memory > > Signed-off-by: David Hildenbrand

[PATCH v2 3/6] util/oslib-posix: Don't create too many threads with small memory or little pages

2021-07-22 Thread David Hildenbrand
Let's limit the number of threads to something sane, especially that - We don't have more threads than the number of pages we have - We don't have threads that initialize small (< 64 MiB) memory Signed-off-by: David Hildenbrand --- util/oslib-posix.c | 12 ++-- 1 file changed, 10