All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
To: Davide Libenzi <davidel-AhlLAIvw+VEjIGhXcJzhZg@public.gmane.org>
Cc: Michael Kerrisk
	<mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	"linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
	lkml <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	stable-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Subject: Re: [stable] Why does timerfd() only support CLOCK_REALTIME and CLOCK_MONOTONIC?
Date: Sun, 8 Feb 2009 14:10:27 -0800	[thread overview]
Message-ID: <20090208221027.GA14523@kroah.com> (raw)
In-Reply-To: <alpine.DEB.1.10.0902081405120.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>

On Sun, Feb 08, 2009 at 02:06:34PM -0800, Davide Libenzi wrote:
> On Mon, 9 Feb 2009, Michael Kerrisk wrote:
> 
> > On Mon, Feb 9, 2009 at 10:50 AM, Davide Libenzi <davidel-AhlLAIvw+VEjIGhXcJzhZg@public.gmane.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.

If it fixes a bug, it would go into -stable.  Does this?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <greg@kroah.com>
To: Davide Libenzi <davidel@xmailserver.org>
Cc: Michael Kerrisk <mtk.manpages@gmail.com>,
	"linux-man@vger.kernel.org" <linux-man@vger.kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	lkml <linux-kernel@vger.kernel.org>,
	stable@kernel.org
Subject: Re: [stable] Why does timerfd() only support CLOCK_REALTIME and CLOCK_MONOTONIC?
Date: Sun, 8 Feb 2009 14:10:27 -0800	[thread overview]
Message-ID: <20090208221027.GA14523@kroah.com> (raw)
In-Reply-To: <alpine.DEB.1.10.0902081405120.18839@alien.or.mcafeemobile.com>

On Sun, Feb 08, 2009 at 02:06:34PM -0800, Davide Libenzi 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.

If it fixes a bug, it would go into -stable.  Does this?

thanks,

greg k-h

  parent reply	other threads:[~2009-02-08 22:10 UTC|newest]

Thread overview: 28+ 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 18:25 ` Michael Kerrisk
     [not found] ` <cfd18e0f0902081025t3fe333ev1616af990e6d19ce-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-08 19:29   ` Davide Libenzi
2009-02-08 19:29     ` Davide Libenzi
     [not found]     ` <alpine.DEB.1.10.0902081127510.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>
2009-02-08 20:46       ` Davide Libenzi
2009-02-08 20:46         ` Davide Libenzi
     [not found]         ` <alpine.DEB.1.10.0902081245560.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>
2009-02-08 21:18           ` Michael Kerrisk
2009-02-08 21:18             ` Michael Kerrisk
     [not found]             ` <cfd18e0f0902081318p3b7efde5u3977a9fdadf3f542-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-08 21:22               ` Davide Libenzi
2009-02-08 21:22                 ` Davide Libenzi
     [not found]                 ` <alpine.DEB.1.10.0902081320560.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>
2009-02-08 21:26                   ` Michael Kerrisk
2009-02-08 21:26                     ` Michael Kerrisk
2009-02-08 21:29           ` Michael Kerrisk
2009-02-08 21:29             ` Michael Kerrisk
     [not found]             ` <cfd18e0f0902081329j4b18c4f2g91269d3209f1932d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-08 21:50               ` Davide Libenzi
2009-02-08 21:50                 ` Davide Libenzi
     [not found]                 ` <alpine.DEB.1.10.0902081340320.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>
2009-02-08 21:53                   ` Michael Kerrisk
2009-02-08 21:53                     ` Michael Kerrisk
     [not found]                     ` <cfd18e0f0902081353t70f9e107g28f8003f356f84db-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-08 22:06                       ` Davide Libenzi
2009-02-08 22:06                         ` Davide Libenzi
     [not found]                         ` <alpine.DEB.1.10.0902081405120.18839-GPJ85BhbkB8RepQJljzAVbITYcZ0+W3JAL8bYrjMMd8@public.gmane.org>
2009-02-08 22:10                           ` Greg KH [this message]
2009-02-08 22:10                             ` [stable] " Greg KH
     [not found]                             ` <20090208221027.GA14523-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2009-02-08 22:27                               ` Michael Kerrisk
2009-02-08 22:27                                 ` Michael Kerrisk
2009-02-08 22:12                           ` Michael Kerrisk
2009-02-08 22:12                             ` Michael Kerrisk
     [not found]                             ` <cfd18e0f0902081412x67f97e9eq7df94148807107c8-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-09  2:24                               ` Greg KH
2009-02-09  2:24                                 ` Greg KH

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=20090208221027.GA14523@kroah.com \
    --to=greg-u8xffu+wg4eavxtiumwx3w@public.gmane.org \
    --cc=davidel-AhlLAIvw+VEjIGhXcJzhZg@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=stable-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.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.