Re: [PATCH] x86: Reduce the default HZ value

From: Jeff Garzik
Date: Thu May 07 2009 - 13:57:27 EST


Alan Cox wrote:
On Thu, 07 May 2009 12:55:05 -0400
Jeff Garzik <jeff@xxxxxxxxxx> wrote:

H. Peter Anvin wrote:
Alan Cox wrote:
Hooray - finally someone admits the *real* problem here, and for power
management too. Otherwise known as "referencing jiffies as a variable must
die"
Amen. Also, "using HZ as a unit of measurement must die, too."
Love to -- now, what will it be replaced with?

grep for 'deadline' in drivers/ata/libata* to find an example not so easily converted away from jiffies.

I don't see any.

I do see a complicated interface that appears to actually really want to
implement

add_timer(&foo->expiry_timer);

and checks against the timer completing. In fact it looks as if all the
stuff in there is really down to

add a timer
check if it expired
check how long until it expires
delete it

This is why I mentioned this example... because it's not as easy as you seem to think it is :)

We care only about a decreasing time interval. This interval is passed to register polling functions (bitbang no longer than <this> amount of time), as well as _cumulatively_ affecting the entire EH [sub-]process.

A timer-based solution, in addition to being an ugly hack, would imply replacing a simple variable with _at least_ two spinlocks, plus a timer callback function that simply says "I expired". With loops such as

max_msecs = calc_deadline(overall_deadline, ...)
while (!(register & bit))
msleep(1)
max_msecs--
register = readl(...)

must be converted to the more-complex timer-based solution.

libata would be happy to use milliseconds rather than jiffies; the unit does not matter. What matters is calculating our progress versus the clock tick, as spread across multiple functions, multiple contexts, and register polling loops.

The current code is a -lot- more simple than checking "is timer expired?" all over the code, given that any sort of timer-based function implies dealing with additional concurrency issues -- a complication the libata EH does not need.

Jeff



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/