public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Peter Williams <pwil3058@bigpond.net.au>
To: Con Kolivas <kernel@kolivas.org>
Cc: linux-kernel@vger.kernel.org, Al Boldi <a1426z@gawab.com>,
	Pavel Machek <pavel@ucw.cz>,
	Jan Engelhardt <jengelh@linux01.gwdg.de>
Subject: Re: Incorrect CPU process accounting using CONFIG_HZ=100
Date: Wed, 28 Jun 2006 09:52:52 +1000	[thread overview]
Message-ID: <44A1C4D4.3080805@bigpond.net.au> (raw)
In-Reply-To: <200606272302.16950.kernel@kolivas.org>

Con Kolivas wrote:
> On Tuesday 27 June 2006 22:32, Al Boldi wrote:
>> Pavel Machek wrote:
>>> On Thu 2006-06-22 20:36:39, Al Boldi wrote:
>>>> Jan Engelhardt wrote:
>>>>>> Setting CONFIG_HZ=100 results in incorrect CPU process accounting.
>>>>>>
>>>>>> This can be seen running top d.1, that shows top, itself, consuming
>>>>>> 0ms CPUtime.
>>>>>>
>>>>>> Will this bug have consequences for sched.c?
>>>>> Works for me, somewhat.
>>>>> TIME+ says 0:00.02 after 70 secs. (Ergo: top is not expensive on this
>>>>> CPU.)
>>>> That's what I thought for a long time.  But at closer inspection, top
>>>> d.1 slows down other apps by about the same amount of time at 1000Hz
>>>> and 100Hz, only at 1000Hz it is accounted for whereas at 100Hz it is
>>>> not.
>>> It is not a bug... it is design decision. If you eat "too little" cpu
>>> time, you'll be accouted 0 msec. That's what happens at 100Hz...
>> Bummer!
>>
>> Meanwhile, can't "too little" cpu time be made relative to CONFIG_HZ?
> 
> It is and that's what you're perceiving as the problem. We only charge tasks 
> in ticks and it's the tick size they get charged with. So at 100HZ if a task 
> is running when a tick fires it gets charged 1% cpu. If it runs for 100 ticks 
> it gets charged with 100% cpu. At 1000HZ it gets charged .1% cpu per tick and 
> so on. The actual problem is that tasks only get charged if they happen to be 
> running at the precise moment the tick fires. Now you could increase the 
> accuracy of this timekeeping but it is expensive and this is exactly the sort 
> of thing that we're saving cpu resources on by running at 100HZ (one of 
> many).
> 

It could be (partly) done fairly cheaply in nanoseconds if sched_clock() 
was reliable enough (but comments on this mail list indicate that it 
currently isn't) as it is already called in all the right places for 
getting the total cpu time used (so just a subtraction, addition and 
assignment).  The reason that I say partly is that splitting the time 
into "system" and "user" would be a more complex problem.

Peter
PS It's also called already at appropriate places for measuring total 
sleep and total cpu delay time (i.e. time spent on a run queue waiting 
to get on to a CPU).
PPS The task time stamp is also already updated at all the appropriate 
places for use in this mechanism.
-- 
Peter Williams                                   pwil3058@bigpond.net.au

"Learning, n. The kind of ignorance distinguishing the studious."
  -- Ambrose Bierce

  reply	other threads:[~2006-06-27 23:52 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-21 14:16 Incorrect CPU process accounting using CONFIG_HZ=100 Al Boldi
2006-06-22  5:46 ` Jan Engelhardt
2006-06-22 17:36   ` Al Boldi
2006-06-26 16:02     ` Pavel Machek
2006-06-27 12:32       ` Al Boldi
2006-06-27 13:02         ` Con Kolivas
2006-06-27 23:52           ` Peter Williams [this message]
2006-06-28 20:06             ` Al Boldi
2006-06-28 23:23               ` Peter Williams
2006-06-28 23:46                 ` Con Kolivas
2006-06-29  0:25                   ` Peter Williams
2006-06-29  1:10                     ` Con Kolivas
2006-06-29  7:29                     ` Pavel Machek

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=44A1C4D4.3080805@bigpond.net.au \
    --to=pwil3058@bigpond.net.au \
    --cc=a1426z@gawab.com \
    --cc=jengelh@linux01.gwdg.de \
    --cc=kernel@kolivas.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pavel@ucw.cz \
    /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