public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Paul Mackerras <paulus@samba.org>
Cc: Ingo Molnar <mingo@elte.hu>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] perfcounters: record time running and time enabled for each counter
Date: Sun, 22 Mar 2009 01:55:59 -0700	[thread overview]
Message-ID: <20090322015559.818961b6.akpm@linux-foundation.org> (raw)
In-Reply-To: <18885.29855.433194.463455@cargo.ozlabs.ibm.com>

On Sun, 22 Mar 2009 10:13:35 +1100 Paul Mackerras <paulus@samba.org> wrote:

> Andrew Morton writes:
> 
> > Perhaps one of the reasons why this code is confusing is the blurring
> > between the "time" at which an event occured and the "time" between the
> > occurrence of two events.  A weakness in English, I guess.  Using the term
> > "interval" in the latter case will help a lot.
> 
> Except that we aren't measuring an "interval", we're measuring the
> combined length of a whole series of intervals.  What's a good word
> for that?

foo_total_time?

It doesn't matter so much if the thing has a comment at the definition site.

> > > +	atomic64_t			child_time_enabled;
> > > +	atomic64_t			child_time_running;
> > 
> > These read like booleans, but why are they atomic64_t's?
> 
> OK so this file could use more comments, but I did answer that
> question in the patch description.
> 
> > > -	return put_user(cntval, (u64 __user *) buf) ? -EFAULT : sizeof(cntval);
> > > +	if (count != n * sizeof(u64))
> > > +		return -EINVAL;
> > > +
> > > +	if (!access_ok(VERIFY_WRITE, buf, count))
> > > +		return -EFAULT;
> > > +	
> > 
> > <panics>
> > 
> > Oh.
> > 
> > It would be a lot more reassuring to verify `uptr', rather than `buf' here.

This?

> > The patch adds new trailing whitespace.  checkpatch helps.
> > 
> > > +	for (i = 0; i < n; ++i)
> > > +		if (__put_user(values[i], uptr + i))
> > > +			return -EFAULT;
> > 
> > And here we iterate across `n', whereas we verified `count'.
> 
> And the fact that we just verified count == n * 8, four lines above,
> doesn't give you any comfort?

	access_ok(..., uptr, n * sizeof(*uptr))

might be most robust.

Or fix up the types (if needed) and copy the whole thing with copy_to_user()

Is it really so performance-sensitive that we can't use plain old put_user()?

  reply	other threads:[~2009-03-22  9:03 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-21 12:04 [PATCH v2] perfcounters: record time running and time enabled for each counter Paul Mackerras
2009-03-21 12:52 ` Andrew Morton
2009-03-21 15:52   ` Ingo Molnar
2009-03-21 15:54   ` Ingo Molnar
2009-03-21 16:10     ` [tree] Performance Counters for Linux, v7 Ingo Molnar
2009-03-22  6:48       ` Jaswinder Singh Rajput
2009-03-23 22:06         ` Ingo Molnar
2009-03-21 23:13   ` [PATCH v2] perfcounters: record time running and time enabled for each counter Paul Mackerras
2009-03-22  8:55     ` Andrew Morton [this message]
2009-03-22 11:44       ` Paul Mackerras
2009-03-22 17:16     ` Ray Lee

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=20090322015559.818961b6.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=paulus@samba.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox