From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46018) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boWJj-0007F6-Ef for qemu-devel@nongnu.org; Mon, 26 Sep 2016 09:51:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boWJf-0008OH-AJ for qemu-devel@nongnu.org; Mon, 26 Sep 2016 09:51:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48570) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boWJf-0008O8-3a for qemu-devel@nongnu.org; Mon, 26 Sep 2016 09:51:31 -0400 Date: Mon, 26 Sep 2016 15:51:27 +0200 From: Kevin Wolf Message-ID: <20160926135127.GJ6093@noname.str.redhat.com> References: <1474890272-22952-1-git-send-email-pl@kamp.de> <1474890272-22952-5-git-send-email-pl@kamp.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1474890272-22952-5-git-send-email-pl@kamp.de> Subject: Re: [Qemu-devel] [PATCH V8 4/6] coroutine-sigaltstack: use helper for allocating stack memory List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Lieven Cc: qemu-devel@nongnu.org, mreitz@redhat.com, pbonzini@redhat.com, mst@redhat.com, dgilbert@redhat.com, peter.maydell@linaro.org, eblake@redhat.com, rth@twiddle.net, armbru@redhat.com Am 26.09.2016 um 13:44 hat Peter Lieven geschrieben: > Signed-off-by: Peter Lieven > --- > util/coroutine-sigaltstack.c | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/util/coroutine-sigaltstack.c b/util/coroutine-sigaltstack.c > index 9c2854c..d9c7f66 100644 > --- a/util/coroutine-sigaltstack.c > +++ b/util/coroutine-sigaltstack.c > @@ -33,6 +33,7 @@ > typedef struct { > Coroutine base; > void *stack; > + size_t stack_size; > sigjmp_buf env; > } CoroutineUContext; Not related to your patch, but somehow I feel some renaming would be in order... (compare the struct name and the source file name) Kevin