From: Andrew Morton <akpm@linux-foundation.org>
To: "Gustavo F. Padovan" <gustavo@las.ic.unicamp.br>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kernel/fork.c: define reset_task_cputimes()
Date: Thu, 26 Feb 2009 14:53:46 -0800 [thread overview]
Message-ID: <20090226145346.8a778d98.akpm@linux-foundation.org> (raw)
In-Reply-To: <1235625475-21218-1-git-send-email-gustavo@las.ic.unicamp.br>
On Thu, 26 Feb 2009 02:17:55 -0300
"Gustavo F. Padovan" <gustavo@las.ic.unicamp.br> wrote:
> Group all vars that receive cputime_zero in the same static function.
> This also cleans the code.
>
> Signed-off-by: Gustavo F. Padovan <gustavo@las.ic.unicamp.br>
> ---
> include/linux/sched.h | 11 +++++++++++
> kernel/fork.c | 8 +-------
> 2 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index 8981e52..1a64587 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -1595,6 +1595,17 @@ extern cputime_t task_utime(struct task_struct *p);
> extern cputime_t task_stime(struct task_struct *p);
> extern cputime_t task_gtime(struct task_struct *p);
>
> +static inline void reset_task_cputimes(struct task_struct *t)
> +{
> + t->utime = cputime_zero;
> + t->stime = cputime_zero;
> + t->gtime = cputime_zero;
> + t->utimescaled = cputime_zero;
> + t->stimescaled = cputime_zero;
> + t->prev_utime = cputime_zero;
> + t->prev_stime = cputime_zero;
> +}
> +
> /*
> * Per process flags
> */
> diff --git a/kernel/fork.c b/kernel/fork.c
> index a66fbde..9856abe 100644
> --- a/kernel/fork.c
> +++ b/kernel/fork.c
> @@ -1031,13 +1031,7 @@ static struct task_struct *copy_process(unsigned long clone_flags,
> clear_tsk_thread_flag(p, TIF_SIGPENDING);
> init_sigpending(&p->pending);
>
> - p->utime = cputime_zero;
> - p->stime = cputime_zero;
> - p->gtime = cputime_zero;
> - p->utimescaled = cputime_zero;
> - p->stimescaled = cputime_zero;
> - p->prev_utime = cputime_zero;
> - p->prev_stime = cputime_zero;
> + reset_task_cputimes(p);
>
> p->default_timer_slack_ns = current->timer_slack_ns;
>
I cannot see much point in doing this, unless you have some other patch
which adds a second caller of reset_task_cputimes()?
next prev parent reply other threads:[~2009-02-26 22:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-26 5:17 [PATCH] kernel/fork.c: define reset_task_cputimes() Gustavo F. Padovan
2009-02-26 22:53 ` Andrew Morton [this message]
2009-02-28 2:50 ` Gustavo F. Padovan
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=20090226145346.8a778d98.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=gustavo@las.ic.unicamp.br \
--cc=linux-kernel@vger.kernel.org \
/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.