From mboxrd@z Thu Jan 1 00:00:00 1970 From: john stultz Subject: Re: [PATCH] timerfd: add TFD_NOTIFY_CLOCK_SET to watch for clock changes Date: Wed, 01 Dec 2010 16:14:27 -0800 Message-ID: <1291248867.2846.37.camel@work-vm> References: <1291167587-16695-1-git-send-email-virtuoso@slind.org> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Thomas Gleixner , Alexander Viro , Greg Kroah-Hartman , Feng Tang , Andrew Morton , Michael Tokarev , Marcelo Tosatti , Chris Friesen , Kay Sievers , "Kirill A. Shutemov" , Artem Bityutskiy , Davide Libenzi , Lennart Poettering , linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Alexander Shishkin Return-path: In-Reply-To: <1291167587-16695-1-git-send-email-virtuoso-0lOfPCoBze7YtjvyW6yDsg@public.gmane.org> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-fsdevel.vger.kernel.org On Wed, 2010-12-01 at 03:39 +0200, Alexander Shishkin wrote: > To use this notification functionality, user has to call timerfd_settime() > with TFD_NOTIFY_CLOCK_SET flag. After this CLOCK_REALTIME timers will > read as the number of times the wall clock has been set since last read > and poll every time the wall clock is set; CLOCK_MONOTONIC timers will > behave likewise, but in the event of the clock being updated upon resuming > from suspend. For both CLOCK_REALTIME and CLOCK_MONOTONIC timers with > TFD_NOTIFY_CLOCK_SET flag set, a call to timerfd_gettime() will return > current wall clock in it_value. The CLOCK_MONOTONIC flag on resume worries me a bit (since CLOCK_MONOTONIC isn't adjusted on resume). What is the use case there? thanks -john