All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Lieven <pl@kamp.de>
To: Richard Henderson <rth@twiddle.net>, qemu-devel@nongnu.org
Cc: kwolf@redhat.com, peter.maydell@linaro.org, mst@redhat.com,
	dgilbert@redhat.com, mreitz@redhat.com, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH 6/6] coroutine: reduce stack size to 64kB
Date: Mon, 4 Jul 2016 08:22:41 +0200	[thread overview]
Message-ID: <577A00B1.3010508@kamp.de> (raw)
In-Reply-To: <a64ebe53-0c7f-959d-a40f-8fcb8495bc39@twiddle.net>

Am 01.07.2016 um 23:13 schrieb Richard Henderson:
> On 06/30/2016 12:37 AM, Peter Lieven wrote:
>> evaluation with the recently introduced maximum stack usage monitoring revealed
>> that the actual used stack size was never above 4kB so allocating 1MB stack
>> for each coroutine is a lot of wasted memory. So reduce the stack size to
>> 64kB which should still give enough head room.
>>
>> Signed-off-by: Peter Lieven <pl@kamp.de>
>> ---
>>  include/qemu/coroutine_int.h | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/qemu/coroutine_int.h b/include/qemu/coroutine_int.h
>> index eac323a..f84d777 100644
>> --- a/include/qemu/coroutine_int.h
>> +++ b/include/qemu/coroutine_int.h
>> @@ -28,7 +28,7 @@
>>  #include "qemu/queue.h"
>>  #include "qemu/coroutine.h"
>>
>> -#define COROUTINE_STACK_SIZE (1 << 20)
>> +#define COROUTINE_STACK_SIZE (1 << 16)
>>
>>  typedef enum {
>>      COROUTINE_YIELD = 1,
>>
>
> Ought we check that this is not smaller than
>
>     sysconf(_SC_THREAD_STACK_MIN)
>
> which (for glibc at least), is 192k for ia64, 128k for aarch64, mips and tile (though why it is quite so high in those later cases I don't know).

for x86_64 it seems to be 16k. I would not mind to adjust the stack size either in qemu_alloc_stack or change the macro for the coroutine stack
size into a function returning MAX(1 << 16, sysconf(_SC_THREAD_STACK_MIN)).

Peter

  reply	other threads:[~2016-07-04  6:22 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-30  7:37 [Qemu-devel] [PATCH 0/6] coroutine: mmap stack memory and stack size Peter Lieven
2016-06-30  7:37 ` [Qemu-devel] [PATCH 1/6] oslib-posix: add helpers for stack alloc and free Peter Lieven
2016-07-01 20:12   ` Richard Henderson
2016-07-01 20:49     ` Richard Henderson
2016-07-04  6:18       ` Peter Lieven
2016-07-04 10:19         ` Paolo Bonzini
2016-07-04 10:25           ` Peter Lieven
2016-07-04 10:34             ` Paolo Bonzini
2016-07-04 10:35               ` Peter Lieven
2016-07-04 10:48                 ` Paolo Bonzini
2016-07-04  6:16     ` Peter Lieven
2016-06-30  7:37 ` [Qemu-devel] [PATCH 2/6] coroutine: add a macro for the coroutine stack size Peter Lieven
2016-07-01 20:50   ` Richard Henderson
2016-06-30  7:37 ` [Qemu-devel] [PATCH 3/6] coroutine-ucontext: use helper for allocating stack memory Peter Lieven
2016-07-01 20:52   ` Richard Henderson
2016-06-30  7:37 ` [Qemu-devel] [PATCH 4/6] coroutine-sigaltstack: " Peter Lieven
2016-07-01 20:53   ` Richard Henderson
2016-06-30  7:37 ` [Qemu-devel] [PATCH 5/6] oslib-posix: add a configure switch to debug stack usage Peter Lieven
2016-07-01 20:55   ` Richard Henderson
2016-06-30  7:37 ` [Qemu-devel] [PATCH 6/6] coroutine: reduce stack size to 64kB Peter Lieven
2016-07-01 21:13   ` Richard Henderson
2016-07-04  6:22     ` Peter Lieven [this message]
2016-07-04 10:20       ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=577A00B1.3010508@kamp.de \
    --to=pl@kamp.de \
    --cc=dgilbert@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.