Re: [PATCHSET] Announce: High-res timers, tickless/dyntick and dynamic HZ

From: Con Kolivas
Date: Mon Jun 19 2006 - 08:09:07 EST


On Monday 19 June 2006 05:50, Thomas Gleixner wrote:
> Michal,
>
> On Sun, 2006-06-18 at 18:35 +0200, Michal Piotrowski wrote:
> > HARNING:
> > /lib/modules/2.6.17-hrt-dyntick1/kernel/sound/pci/ac97/snd-ac97-codec.ko
> > needs unknown symbol msecs_to_jiffies WARNING:
> > /lib/modules/2.6.17-hrt-dyntick1/kernel/drivers/net/skge.ko needs unknown
> > symbol jiffies_to_msecs WARNING:
> > /lib/modules/2.6.17-hrt-dyntick1/kernel/drivers/cpufreq/cpufreq_ondemand.
> >ko needs unknown symbol jiffies_to_usecs
> >
> > Here is fix small fix.
>
> Applied, thanks.
>
> New patch available at:
>
> http://www.tglx.de/projects/hrtimers/2.6.17/patch-2.6.17-hrt-dyntick2.patch
>
> http://www.tglx.de/projects/hrtimers/2.6.17/patch-2.6.17-hrt-dyntick2.patch
>es.tar.bz2

Also suffers from:
WARNING: "timespec_to_jiffies" [fs/fuse/fuse.ko] undefined!

Here is a fix

---
kernel/time.c | 2 ++
1 files changed, 2 insertions(+)

Index: linux-2.6.17-hrt-dyntick2.patch/kernel/time.c
===================================================================
--- linux-2.6.17-hrt-dyntick2.patch.orig/kernel/time.c 2006-06-19 22:02:32.000000000 +1000
+++ linux-2.6.17-hrt-dyntick2.patch/kernel/time.c 2006-06-19 22:08:39.000000000 +1000
@@ -773,6 +773,8 @@ timespec_to_jiffies(const struct timespe

}

+EXPORT_SYMBOL(timespec_to_jiffies);
+
void
jiffies_to_timespec(const unsigned long jiffies, struct timespec *value)
{

--
-ck
-
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/