From: Ingo Molnar <mingo@elte.hu>
To: Paul Mackerras <paulus@samba.org>
Cc: mingo@redhat.com, hpa@zytor.com, acme@redhat.com,
linux-kernel@vger.kernel.org, a.p.zijlstra@chello.nl,
mtosatti@redhat.com, tglx@linutronix.de,
cjashfor@linux.vnet.ibm.com, linux-tip-commits@vger.kernel.org
Subject: Re: [tip:perfcounters/core] perf_counter: Optimize context switch between identical inherited contexts
Date: Mon, 25 May 2009 08:54:17 +0200 [thread overview]
Message-ID: <20090525065417.GA9665@elte.hu> (raw)
In-Reply-To: <18970.14391.357197.638009@cargo.ozlabs.ibm.com>
* Paul Mackerras <paulus@samba.org> wrote:
> Ingo Molnar writes:
>
> > * tip-bot for Paul Mackerras <paulus@samba.org> wrote:
> >
> > > @@ -885,6 +934,16 @@ void perf_counter_task_sched_out(struct task_struct *task, int cpu)
> > >
> > > regs = task_pt_regs(task);
> > > perf_swcounter_event(PERF_COUNT_CONTEXT_SWITCHES, 1, 1, regs, 0);
> > > +
> > > + next_ctx = next->perf_counter_ctxp;
> > > + if (next_ctx && context_equiv(ctx, next_ctx)) {
> > > + task->perf_counter_ctxp = next_ctx;
> > > + next->perf_counter_ctxp = ctx;
> > > + ctx->task = next;
> > > + next_ctx->task = task;
> > > + return;
> > > + }
> >
> > there's one complication that this trick is causing - the migration
> > counter relies on ctx->task to get per task migration stats:
> >
> > static inline u64 get_cpu_migrations(struct perf_counter *counter)
> > {
> > struct task_struct *curr = counter->ctx->task;
> >
> > if (curr)
> > return curr->se.nr_migrations;
> > return cpu_nr_migrations(smp_processor_id());
> > }
> >
> > as ctx->task is now jumping (while we keep the context), the
> > migration stats are out of whack.
>
> How did you notice this? The overall sum over all children should
> still be correct, though some individual children's counters could
> go negative, so the result of a read on the counter when some
> children have exited and others haven't could look a bit strange.
> Reading the counter after all children have exited should be fine,
> though.
i've noticed a few weirdnesses and then added a debug check and
noticed the negative delta values.
> One of the effects of optimizing the context switch is that in
> general, reading the value of an inheritable counter when some
> children have exited but some are still running might produce
> results that include some of the activity of the still-running
> children and might not include all of the activity of the children
> that have exited. If that's a concern then we need to implement
> the "sync child counters" ioctl that has been suggested.
>
> As for the migration counter, it is the only software counter that
> is still using the "old" approach, i.e. it doesn't generate
> interrupts and it uses the counter->prev_state field (which I hope
> to eliminate one day). It's also the only software counter which
> counts events that happen while the task is not scheduled in. The
> cleanest thing would be to rewrite the migration counter code to
> have a callin from the scheduler when migrations happen.
I'll check with the debug check removed again. If the end result is
OK then i dont think we need to worry much about this, at this
stage.
Ingo
next prev parent reply other threads:[~2009-05-25 6:54 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-22 4:17 [PATCH 1/2] perf_counter: dynamically allocate tasks' perf_counter_context struct [v2] Paul Mackerras
2009-05-22 4:27 ` [PATCH 2/2] perf_counter: optimize context switch between identical inherited contexts Paul Mackerras
2009-05-22 8:16 ` Peter Zijlstra
2009-05-22 9:56 ` Paul Mackerras
2009-05-22 10:08 ` Peter Zijlstra
2009-05-23 12:38 ` Ingo Molnar
2009-05-23 13:06 ` Peter Zijlstra
2009-05-24 23:55 ` Paul Mackerras
2009-05-22 8:32 ` Peter Zijlstra
2009-05-22 8:57 ` Ingo Molnar
2009-05-22 9:02 ` Peter Zijlstra
2009-05-22 10:14 ` Ingo Molnar
2009-05-22 9:29 ` Paul Mackerras
2009-05-22 9:22 ` Peter Zijlstra
2009-05-22 9:42 ` Peter Zijlstra
2009-05-22 10:07 ` Paul Mackerras
2009-05-22 10:05 ` Paul Mackerras
2009-05-22 10:11 ` Ingo Molnar
2009-05-22 10:27 ` [tip:perfcounters/core] perf_counter: Optimize " tip-bot for Paul Mackerras
2009-05-24 11:33 ` Ingo Molnar
2009-05-25 6:18 ` Paul Mackerras
2009-05-25 6:54 ` Ingo Molnar [this message]
2009-05-22 10:36 ` [tip:perfcounters/core] perf_counter: fix !PERF_COUNTERS build failure tip-bot for Ingo Molnar
2009-05-22 13:46 ` [PATCH 2/2] perf_counter: optimize context switch between identical inherited contexts Peter Zijlstra
2009-05-25 0:15 ` Paul Mackerras
2009-05-25 10:38 ` Peter Zijlstra
2009-05-25 10:50 ` Peter Zijlstra
2009-05-25 11:06 ` Paul Mackerras
2009-05-25 11:27 ` Peter Zijlstra
2009-05-22 8:06 ` [PATCH 1/2] perf_counter: dynamically allocate tasks' perf_counter_context struct [v2] Peter Zijlstra
2009-05-22 9:30 ` Paul Mackerras
2009-05-22 10:27 ` [tip:perfcounters/core] perf_counter: Dynamically allocate tasks' perf_counter_context struct tip-bot for Paul Mackerras
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=20090525065417.GA9665@elte.hu \
--to=mingo@elte.hu \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@redhat.com \
--cc=cjashfor@linux.vnet.ibm.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=mtosatti@redhat.com \
--cc=paulus@samba.org \
--cc=tglx@linutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).