From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754516AbbKETAu (ORCPT ); Thu, 5 Nov 2015 14:00:50 -0500 Received: from mout.kundenserver.de ([212.227.126.130]:60267 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750894AbbKETAs (ORCPT ); Thu, 5 Nov 2015 14:00:48 -0500 From: Arnd Bergmann To: Greg Kroah-Hartman Cc: Tina Ruchandani , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, y2038 Subject: Re: [RESEND PATCH] USB: usbmon: Use 64bit timestamp for mon_bin_hdr Date: Thu, 05 Nov 2015 20:00:44 +0100 Message-ID: <5598296.p725WpccQL@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <20151105163739.GA10136@kroah.com> References: <20151030054431.GA360@google.com> <11025195.jAqGPh9YPj@wuerfel> <20151105163739.GA10136@kroah.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:R+NGgQH96yDS8aQnxHQXg1TbawfLFCO1RNwbQ7SmCfuIBbrXYzQ K2SFADSk9nBw+n2rizQLSXJbSYFGghg3iURJo6RLLSCwXRVJTFJW00e86hBIDim8MMrVQqs U88KqxYXHmApT/oRcz/05HUfRnnBUA2b6cS8dvGCPRbpieQpGKFTC4QRA309QSXMKyuxysU 0m40+hRvaUpdaHtNLSSSQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:oQ+geKlQFyE=:LOqieSYc2aGlt7EdhHscSb mOj3s3Wt1hSkX5CtMDEcEI4FobKW7wTs8Jz+KYQQCe2VMjLTL3r1GrXQ8F8/uPzXUL5dQqgKU LHNGrVmzyTNdx2F2wVs5XgVd8isncKtICYR3oc+1Pg/2nIF/3v7PRTwylrfjbRRd6U+9+Dny0 ZKX+/DSRN8My60B+IwNscUcs/227lk1ArTCd3x8ELSrf+/2z2CgSz0gphdOhHYyz/xhbCTaKZ s7KjbZ9reCeGbWKqE8VC0OgiR6hu3Qz9kZfWf3APEBfqAgZMxeRRYEQqH2Te3DMC5aHD5esV9 /VYTNMtwWGoWQLFPu0DFdJl+TmzieffiEh/LpGjajrXKSyipBhwG2cnicdrqI93N8bgY9hWMi suQSb6l3S41Vgtgs/8LWyvVCEYj2QhGwsMAn8gDz/5CLsZ5d6ltrFNUla2Bvd7p6bwFQbfj8a wBEC5nQ73N4iiHfrc5qrU9fH/IaTLLpybZS31GbWf14kfzY1fZW5tTkKpb0RPlJ9HbfjHNqeS eB4gVBhTtBtS6ZqWIg+VKZCKxSJaOBF0cEkIFNZaFw/kuH7Y08DLlR9g+3cTQFx3087QTnzq5 4Xe+4SQpvoJzuyHmT+U5o+V79CJXbnb3qbZsZRHjVNh7KkTqI400BM1My9e8Sxs0y7JuMRPSH OyitAjsRcDxVBPj9uQ9gybO1hTyxWmJxG1gmqgVlLrxcm5kJXIb0tlWXXzT2cNYSpoJ7YyrIu HgabGeVwXQ8UD5y0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday 05 November 2015 08:37:39 Greg Kroah-Hartman wrote: > On Thu, Nov 05, 2015 at 05:18:41PM +0100, Arnd Bergmann wrote: > > On Thursday 29 October 2015 22:44:31 Tina Ruchandani wrote: > > > struct mon_bin_hdr allows for a 64-bit seconds timestamp. The code > > > currently uses 'struct timeval' to populate the timestamp in mon_bin_hdr, > > > which has a 32-bit seconds field and will overflow in year 2038 and beyond. > > > This patch replaces 'struct timeval' with 'struct timespec64' which is > > > y2038 safe. This patch is part of a larger attempt to remove instances > > > of struct timeval and other 32-bit timekeeping (time_t, struct timespec) > > > from the kernel. > > > > > > Signed-off-by: Tina Ruchandani > > > > Reviewed-by: Arnd Bergmann > > > > As the patch is a week old and Greg hasn't picked it up yet, I'm guessing > > that he doesn't have it in his queue any more and you should send it once > > more with my 'Reviewed-by' tag. > > It's the merge window, I can't pick anything new up, please be patient > and wait for 4.4-rc1 to come out first... Sorry, I wasn't thinking straight. Arnd