From: "Uwe Kleine-König" <Uwe.Kleine-Koenig@digi.com>
To: Alessandro Zummo <a.zummo@towertech.it>,
David Brownell <dbrownell@users.sourceforge.net>
Cc: <linux-kernel@vger.kernel.org>
Subject: rtc: how should I handle an invalid state?
Date: Tue, 29 Apr 2008 14:19:24 +0200 [thread overview]
Message-ID: <20080429121924.GA2137@digi.com> (raw)
Hello,
I'm still stuck with my rtc. My current problem is setting the rtc
using hwclock --systohc.
The problem is that hwclock tries to read the current time before
setting the new one. And if that fails, it doesn't update the rtc.
If no error occurs the procedure to read the time is:
fd = open("/dev/rtc", O_RDONLY|O_LARGEFILE)
ioctl(fd, RTC_UIE_ON, 0);
select(fd + 1, [fd], NULL, NULL, {5, 0});
ioctl(fd, RTC_RD_TIME, &rtc_time);
If one of ioctl(fd, RTC_UIE_ON, 0) or select(fd + 1, [fd], NULL, NULL,
{5, 0}) fail, hwclock aborts.
OTOH I don't want to report success in both because then there is no way
to distinguish between a valid and an unvalid date for hwclock.
Looking at some other drivers they don't seem to handle that case.
Maybe returning an invalid date could work?
What do you think?
Best regards
Uwe
--
Uwe Kleine-König, Software Engineer
Digi International GmbH Branch Breisach, Küferstrasse 8, 79206 Breisach, Germany
Tax: 315/5781/0242 / VAT: DE153662976 / Reg. Amtsgericht Dortmund HRB 13962
next reply other threads:[~2008-04-29 12:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-29 12:19 Uwe Kleine-König [this message]
2008-04-29 12:51 ` rtc: how should I handle an invalid state? Alessandro Zummo
2008-04-29 19:12 ` David Brownell
2008-04-30 6:54 ` Uwe Kleine-König
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=20080429121924.GA2137@digi.com \
--to=uwe.kleine-koenig@digi.com \
--cc=a.zummo@towertech.it \
--cc=dbrownell@users.sourceforge.net \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox