From: Richard Kennedy <richard@rsk.demon.co.uk>
To: Oleg Nesterov <oleg@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Ingo Molnar <mingo@elte.hu>, Roland McGrath <roland@redhat.com>,
Vitaly Mayatskikh <vmayatsk@redhat.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/5] introduce "struct wait_opts" to simplify do_wait() pathes
Date: Thu, 07 May 2009 12:54:39 +0100 [thread overview]
Message-ID: <4A02CBFF.4000901@rsk.demon.co.uk> (raw)
In-Reply-To: <20090507064637.GA15861@redhat.com>
Oleg Nesterov wrote:
> Introduce "struct wait_opts" which holds the parameters for misc helpers
> in do_wait() pathes.
>
> This adds 13 lines to kernel/exit.c, but saves 256 bytes from .o and imho
> makes the code much more readable.
>
> This patch temporary uglifies rusage/siginfo code a little bit, will be
> addressed by further cleanups.
>
> Signed-off-by: Oleg Nesterov <oleg@redhat.com>
> Reviewed-by: Ingo Molnar <mingo@elte.hu>
> ---
>
> kernel/exit.c | 207 ++++++++++++++++++++++++++++++----------------------------
> 1 file changed, 110 insertions(+), 97 deletions(-)
>
> --- PTRACE/kernel/exit.c~2_WOPTS 2009-05-07 04:32:08.000000000 +0200
> +++ PTRACE/kernel/exit.c 2009-05-07 04:37:49.000000000 +0200
> @@ -1076,6 +1076,18 @@ SYSCALL_DEFINE1(exit_group, int, error_c
> return 0;
> }
>
> +struct wait_opts {
> + enum pid_type wo_type;
> + struct pid *wo_pid;
> + int wo_flags;
> +
> + struct siginfo __user *wo_info;
> + int __user *wo_stat;
> + struct rusage __user *wo_rusage;
> +
> + int notask_error;
> +};
> +
Hi Oleg,
you can remove 8 bytes of alignment padding from wait_opts on 64bit
builds if you reorder it slightly.
struct wait_opts {
enum pid_type wo_type;
int wo_flags;
struct pid *wo_pid;
...
regards
Richard
next prev parent reply other threads:[~2009-05-07 11:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-07 6:46 [PATCH 2/5] introduce "struct wait_opts" to simplify do_wait() pathes Oleg Nesterov
2009-05-07 7:25 ` Roland McGrath
2009-05-07 11:54 ` Richard Kennedy [this message]
2009-05-09 16:19 ` Oleg Nesterov
2009-05-10 10:50 ` Richard Kennedy
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=4A02CBFF.4000901@rsk.demon.co.uk \
--to=richard@rsk.demon.co.uk \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=oleg@redhat.com \
--cc=roland@redhat.com \
--cc=vmayatsk@redhat.com \
/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.