From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Hackmann Subject: [PATCH] timerfd: support CLOCK_BOOTTIME clock Date: Wed, 8 Jan 2014 10:57:03 -0800 Message-ID: <1389207423-31154-1-git-send-email-ghackmann@google.com> Cc: Thomas Gleixner , Alexander Viro , linux-fsdevel@vger.kernel.org, john.stultz@linaro.org, Greg Hackmann To: linux-kernel@vger.kernel.org Return-path: Received: from mail-qe0-f73.google.com ([209.85.128.73]:45133 "EHLO mail-qe0-f73.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751477AbaAHS5Q (ORCPT ); Wed, 8 Jan 2014 13:57:16 -0500 Received: by mail-qe0-f73.google.com with SMTP id 5so192923qeb.2 for ; Wed, 08 Jan 2014 10:57:15 -0800 (PST) Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Add CLOCK_BOOTTIME support to timerfd Signed-off-by: Greg Hackmann --- fs/timerfd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/timerfd.c b/fs/timerfd.c index 9293121..0013142 100644 --- a/fs/timerfd.c +++ b/fs/timerfd.c @@ -317,6 +317,7 @@ SYSCALL_DEFINE2(timerfd_create, int, clockid, int, flags) (clockid != CLOCK_MONOTONIC && clockid != CLOCK_REALTIME && clockid != CLOCK_REALTIME_ALARM && + clockid != CLOCK_BOOTTIME && clockid != CLOCK_BOOTTIME_ALARM)) return -EINVAL; -- 1.8.5.1