From: Hannes Mayer <h.mayer@domain.hid>
To: adeos-main@gna.org
Subject: [Adeos-main] do_gettimeofday in ADEOS ISR
Date: Wed, 03 Aug 2005 00:40:37 +0200 [thread overview]
Message-ID: <42EFF665.3060000@domain.hid> (raw)
Hi all!
I was just wondering if calling do_gettimeofday in an ADEOS interrupt
handler might cause any problems whatsoever ?
My ISR:
flags = adeos_critical_enter (NULL);
[...]
do_gettimeofday()
[...]
adeos_critical_exit (flags);
I saw that the code for do_gettimeofday is different in kernel 2.4 and
kernel 2.6:
Kernel 2.4:
void do_gettimeofday(struct timeval *tv) {
[...]
read_lock_irqsave(&xtime_lock, flags);
[...]
read_unlock_irqrestore(&xtime_lock, flags);
Kernel 2.6:
void do_gettimeofday(struct timeval *tv) {
[...]
do {
[...]
seq = read_seqbegin(&xtime_lock);
[...]
} while (read_seqretry(&xtime_lock, seq));
Well, read_lock_irqsave in 2.4 looks like a possible source for trouble,
while read_seqbegin in 2.6 doesn't do anything with interrupts, right ?
Thanks for all comments!
Best regards,
Hannes.
next reply other threads:[~2005-08-02 22:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-02 22:40 Hannes Mayer [this message]
2005-08-03 8:03 ` [Adeos-main] do_gettimeofday in ADEOS ISR Philippe Gerum
2005-08-17 20:22 ` Hannes Mayer
2005-08-22 14:08 ` Philippe Gerum
2005-08-22 14:16 ` Philippe Gerum
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=42EFF665.3060000@domain.hid \
--to=h.mayer@domain.hid \
--cc=adeos-main@gna.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.