* [uml-devel] About "jiffies" patch
@ 2005-01-13 5:12 Blaisorblade
2005-01-15 2:06 ` Blaisorblade
0 siblings, 1 reply; 2+ messages in thread
From: Blaisorblade @ 2005-01-13 5:12 UTC (permalink / raw)
To: Jeff Dike; +Cc: user-mode-linux-devel
Well, effectively your reasoning holds, apart for one point: the code should
not hang because of that large INITIAL_JIFFIES. What we care about are only
the value of jiffies relative to INITIAL_JIFFIES, indeed.
In fact, that code works on 64-bit arch's. But INITIAL_JIFFIES is not 0 to
make sure it wraps 5 minutes after the boot, to make sure the wrapping
mechanism is debugged. And this, currently, does not happen likely.
While on 32-bit archs that construct is like "(unsigned int) (-300*HZ)", on
64-bit archs to get a negative number we'd need something like:
(unsigned long)(long)(-300*HZ)
or
(unsigned long)(-300L*HZ)
so that the number is first sign-extended and then casted to unsigned.
--
Paolo Giarrusso, aka Blaisorblade
Linux registered user n. 292729
http://www.user-mode-linux.org/~blaisorblade
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [uml-devel] About "jiffies" patch
2005-01-13 5:12 [uml-devel] About "jiffies" patch Blaisorblade
@ 2005-01-15 2:06 ` Blaisorblade
0 siblings, 0 replies; 2+ messages in thread
From: Blaisorblade @ 2005-01-15 2:06 UTC (permalink / raw)
To: user-mode-linux-devel; +Cc: Jeff Dike
On Thursday 13 January 2005 06:12, Blaisorblade wrote:
> Well, effectively your reasoning holds, apart for one point: the code
> should not hang because of that large INITIAL_JIFFIES. What we care about
> are only the value of jiffies relative to INITIAL_JIFFIES, indeed.
>
> In fact, that code works on 64-bit arch's. But INITIAL_JIFFIES is not 0 to
> make sure it wraps 5 minutes after the boot, to make sure the wrapping
> mechanism is debugged. And this, currently, does not happen likely.
>
> While on 32-bit archs that construct is like "(unsigned int) (-300*HZ)",
> on 64-bit archs to get a negative number we'd need something like:
>
> (unsigned long)(long)(-300*HZ)
>
> or
>
> (unsigned long)(-300L*HZ)
>
> so that the number is first sign-extended and then casted to unsigned.
Sorry, I now went patching the code, and discovered I was a total moron:
/*
* Have the 32 bit jiffies value wrap 5 minutes after boot
* so jiffies wrap bugs show up earlier.
*/
#define INITIAL_JIFFIES ((unsigned long)(unsigned int) (-300*HZ))
It does not say "jiffies wrap", but the "32 bit values" of jiffies wrap...
So, the x86_64 value must actually be the one you have seen - the problem is
that this trigger some kind of bug in UML - do we have some extra 32-bit var?
However, I have two suggestion
paolo [~/Admin/kernel/6/linux-2.6.11: 02:47 (2)] $ grep INITIAL_JIFFIES `find
arch/um/`
paolo [~/Admin/kernel/6/linux-2.6.11: 02:47 (2)] $ grep INITIAL_JIFFIES `find
include/asm-um`
paolo [~/Admin/kernel/6/linux-2.6.11: 02:47 (2)] $ grep INITIAL_JIFFIES `find
include/linux`
include/linux/jiffies.h:#define INITIAL_JIFFIES ((unsigned long)(unsigned int)
(-300*HZ))
For stolen headers:
$ grep INITIAL_JIFFIES `find include/asm-i386`
$ grep INITIAL_JIFFIES `find include/asm-generic`
I.e. we don't use INITIAL_JIFFIES, it seems. Please point out the problem in
my search!
Instead, for i386:
paolo [~/Admin/kernel/6/linux-2.6.11: 02:48 (2)] $ grep INITIAL_JIFFIES
arch/i386/kernel/*.c
arch/i386/kernel/time.c:u64 jiffies_64 = INITIAL_JIFFIES;
arch/i386/kernel/time.c: xtime.tv_nsec = (INITIAL_JIFFIES % HZ) *
(NSEC_PER_SEC / HZ);
arch/i386/kernel/time.c: xtime.tv_nsec = (INITIAL_JIFFIES % HZ) *
(NSEC_PER_SEC / HZ);
- I've compared the link scripts, and discovered this code:
from arch/um/kernel/{dyn,uml}.lds.S and arch/i386/kernel/vmlinux.lds.S
jiffies = jiffies_64;
in arch/x86_64/kernel/vmlinux.lds.S:
jiffies_64 = jiffies;
I'm going to check if I see what is the difference. This is just a note, it
seems that it could be the same thing, after some analisys - in both cases
the sources define the jiffies_64 var.
However, I didn't want to miss it anyway, just in case.
--
Paolo Giarrusso, aka Blaisorblade
Linux registered user n. 292729
http://www.user-mode-linux.org/~blaisorblade
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-01-15 2:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-13 5:12 [uml-devel] About "jiffies" patch Blaisorblade
2005-01-15 2:06 ` Blaisorblade
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).