From: Oleg Nesterov <oleg@redhat.com>
To: Markus Metzger <markus.t.metzger@intel.com>
Cc: linux-kernel@vger.kernel.org, mingo@elte.hu, tglx@linutronix.de,
hpa@zytor.com, markus.t.metzger@gmail.com, roland@redhat.com,
eranian@googlemail.com, juan.villacis@intel.com,
ak@linux.jf.intel.com
Subject: Re: [patch 1/21] x86, bts: fix race when bts tracer is removed
Date: Wed, 1 Apr 2009 01:48:23 +0200 [thread overview]
Message-ID: <20090331234823.GB28228@redhat.com> (raw)
In-Reply-To: <20090331145051.A12111@sedona.ch.intel.com>
On 03/31, Markus Metzger wrote:
>
> Read the tracer once during a context switch.
> ...
> @@ -1044,36 +1051,39 @@ void ds_switch_to(struct task_struct *pr
> {
> struct ds_context *prev_ctx = prev->thread.ds_ctx;
> struct ds_context *next_ctx = next->thread.ds_ctx;
> + unsigned long debugctlmsr = next->thread.debugctlmsr;
>
> if (prev_ctx) {
> + struct bts_tracer *tracer = prev_ctx->bts_master;
> +
> update_debugctlmsr(0);
>
> - if (prev_ctx->bts_master &&
> - (prev_ctx->bts_master->trace.ds.flags & BTS_TIMESTAMPS)) {
> + if (tracer && (tracer->flags & BTS_TIMESTAMPS)) {
In theory, we need barrier() after reading ->bts_master.
(actually, I did see the bug reports when the compiler read the pointer
twice with the code like above).
Off-topic, but afaics modulo bts_task_departs/bts_task_arrives we
have the identical code for prev_ctx/next_ctx, perhaps it makes
sense to make a helper which calls bts_write().
To clarify, even _if_ I am right and _if_ you agree, we can do this
later, I am not suggesting to change this patch right now.
Oleg.
next prev parent reply other threads:[~2009-03-31 23:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-31 12:50 Markus Metzger
2009-03-31 23:48 ` Oleg Nesterov [this message]
2009-04-01 8:10 ` Metzger, Markus T
2009-04-01 11:34 ` Ingo Molnar
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=20090331234823.GB28228@redhat.com \
--to=oleg@redhat.com \
--cc=ak@linux.jf.intel.com \
--cc=eranian@googlemail.com \
--cc=hpa@zytor.com \
--cc=juan.villacis@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=markus.t.metzger@gmail.com \
--cc=markus.t.metzger@intel.com \
--cc=mingo@elte.hu \
--cc=roland@redhat.com \
--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
all inboxes | Powered by JetHome®