From: Greg KH <gregkh@suse.de>
To: mtk.manpages@gmail.com
Cc: Davide Libenzi <davidel@xmailserver.org>,
"linux-man@vger.kernel.org" <linux-man@vger.kernel.org>,
lkml <linux-kernel@vger.kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
stable@kernel.org
Subject: Re: Why does timerfd() only support CLOCK_REALTIME and CLOCK_MONOTONIC?
Date: Sun, 8 Feb 2009 18:24:28 -0800 [thread overview]
Message-ID: <20090209022428.GA10891@suse.de> (raw)
In-Reply-To: <cfd18e0f0902081412x67f97e9eq7df94148807107c8@mail.gmail.com>
On Mon, Feb 09, 2009 at 11:12:21AM +1300, Michael Kerrisk wrote:
> On Mon, Feb 9, 2009 at 11:06 AM, Davide Libenzi <davidel@xmailserver.org> wrote:
> > On Mon, 9 Feb 2009, Michael Kerrisk wrote:
> >
> >> On Mon, Feb 9, 2009 at 10:50 AM, Davide Libenzi <davidel@xmailserver.org> wrote:
> >> > On Mon, 9 Feb 2009, Michael Kerrisk wrote:
> >> >
> >> >> > @@ -186,12 +187,9 @@ SYSCALL_DEFINE2(timerfd_create, int, clo
> >> >> > BUILD_BUG_ON(TFD_CLOEXEC != O_CLOEXEC);
> >> >> > BUILD_BUG_ON(TFD_NONBLOCK != O_NONBLOCK);
> >> >> >
> >> >> > - if (flags & ~(TFD_CLOEXEC | TFD_NONBLOCK))
> >> >> > + if ((flags & ~TFD_FLAGS_SET) ||
> >> >> > + invalid_clockid(clockid))
> >> >> > return -EINVAL;
> >> >>
> >> >> Oh! Does this mean that in 2.6.2[789] it wasn't possible to use
> >> >> TFD_TIMER_ABSTIME?
> >> >
> >> > No, sorry, my fault. Patch is wrong. In "create" ATM we accept only
> >> > FCNTL-like flags. In "settime" we get TFD_TIMER_ABSTIME (that needs a
> >> > check too for EINVAL).
> >>
> >> That last piece should be a separate patch, that also gets pushed back
> >> into -stable. Do you agree?
> >
> > Hmm, it's a check for extra bits that do not cause any harm. Dunno if it
> > fits -stable requirements. You should ask Greg.
>
> I agree that it's not a critical fix. The point is of course that if
> other flags are evntually added to timerfd_settime(), an application
> needs a way of checking for kernel support / lack of support (a la the
> recent discussion of eventfd "[patch/rfc] eventfd semaphore-like
> behavior"). It seems to me it would be good to have that check work
> as far back as possible in older kernels. If that check is to be added
> to 2.6.29, it seems reasonable to push it back to the current -stable
> kernels.
>
> Greg?
Sounds reasonable to me.
thanks,
greg k-h
prev parent reply other threads:[~2009-02-09 2:33 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-08 18:25 Why does timerfd() only support CLOCK_REALTIME and CLOCK_MONOTONIC? Michael Kerrisk
2009-02-08 19:29 ` Davide Libenzi
2009-02-08 20:46 ` Davide Libenzi
2009-02-08 21:18 ` Michael Kerrisk
2009-02-08 21:22 ` Davide Libenzi
2009-02-08 21:26 ` Michael Kerrisk
2009-02-08 21:29 ` Michael Kerrisk
2009-02-08 21:50 ` Davide Libenzi
2009-02-08 21:53 ` Michael Kerrisk
2009-02-08 22:06 ` Davide Libenzi
2009-02-08 22:10 ` [stable] " Greg KH
2009-02-08 22:27 ` Michael Kerrisk
2009-02-08 22:12 ` Michael Kerrisk
2009-02-09 2:24 ` Greg KH [this message]
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=20090209022428.GA10891@suse.de \
--to=gregkh@suse.de \
--cc=davidel@xmailserver.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-man@vger.kernel.org \
--cc=mtk.manpages@gmail.com \
--cc=stable@kernel.org \
--cc=tglx@linutronix.de \
/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