From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752637AbdGEHPL (ORCPT ); Wed, 5 Jul 2017 03:15:11 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:36102 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751696AbdGEHPI (ORCPT ); Wed, 5 Jul 2017 03:15:08 -0400 Date: Wed, 5 Jul 2017 08:14:56 +0100 From: Al Viro To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [git pull] vfs.git part 4 Message-ID: <20170705071456.GB10672@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.0 (2017-02-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Continuation of timers-related stuff (there had been more, but my parts of that series are already merged via timers/core). This is more of y2038 work by Deepa Dinamani, partially disrupted by the unification of native and compat timers-related syscalls. The following changes since commit 938e7cf2d569833a5acf689a8926faf507826253: posix-timers: Make nanosleep timespec argument const (2017-06-14 00:00:47 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git timers-compat for you to fetch changes up to 725816e8aabb1c183baa2bc9572ab9a0d26b9ea1: posix_clocks: Use get_itimerspec64() and put_itimerspec64() (2017-06-30 04:15:02 -0400) ---------------------------------------------------------------- Deepa Dinamani (7): time: add get_timespec64 and put_timespec64 time: introduce {get,put}_itimerspec64 posix-stubs: Conditionally include COMPAT_SYS_NI defines posix-timers: Use get_timespec64() and put_timespec64() nanosleep: Use get_timespec64() and put_timespec64() timerfd: Use get_itimerspec64() and put_itimerspec64() posix_clocks: Use get_itimerspec64() and put_itimerspec64() fs/timerfd.c | 43 +++++++------- include/linux/compat.h | 6 ++ include/linux/hrtimer.h | 2 +- include/linux/posix-timers.h | 1 - include/linux/time.h | 18 ++++++ kernel/compat.c | 65 +++++++++++++++++++++ kernel/time/alarmtimer.c | 4 +- kernel/time/hrtimer.c | 30 +++++----- kernel/time/posix-cpu-timers.c | 8 +-- kernel/time/posix-stubs.c | 96 +++++++++++++++++-------------- kernel/time/posix-timers.c | 127 ++++++++++++++++------------------------- kernel/time/time.c | 58 +++++++++++++++++++ 12 files changed, 287 insertions(+), 171 deletions(-)