From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752534AbdCSSHd (ORCPT ); Sun, 19 Mar 2017 14:07:33 -0400 Received: from mail-wr0-f196.google.com ([209.85.128.196]:35639 "EHLO mail-wr0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752450AbdCSSHb (ORCPT ); Sun, 19 Mar 2017 14:07:31 -0400 Date: Sun, 19 Mar 2017 19:06:34 +0100 From: Richard Cochran To: Deepa Dinamani Cc: tglx@linutronix.de, linux-kernel@vger.kernel.org, john.stultz@linaro.org, arnd@arndb.de, y2038@lists.linaro.org Subject: Re: [RESEND PATCH 2/7] time: Change posix clocks ops interfaces to use timespec64 Message-ID: <20170319180633.GA1958@localhost.localdomain> References: <1489900666-32268-1-git-send-email-deepa.kernel@gmail.com> <1489900666-32268-3-git-send-email-deepa.kernel@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1489900666-32268-3-git-send-email-deepa.kernel@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Mar 18, 2017 at 10:17:41PM -0700, Deepa Dinamani wrote: > struct timespec is not y2038 safe. > Replace the posix_clock ops interfaces to use > struct timespec64. > The patch also changes struct itimerspec interfaces to > struct itimerspec64 as itimerspec internally uses timespec > and itimerspec64 uses timespec64. > PTP clocks is the only module that sets up these interfaces. > All individual drivers rely on PTP class driver for exposure > to userspace. Hence, the change also deals with fixing up these > PTP interfaces. > The patch also changes dynamic posix clock implementation to > reflect the changes in the functional clock interface. > > Signed-off-by: Deepa Dinamani > --- > drivers/ptp/ptp_clock.c | 18 +++++++----------- When changing the PTP code, please put the PTP maintainer onto CC. Thanks, Richard