From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753802AbdJaVgf (ORCPT ); Tue, 31 Oct 2017 17:36:35 -0400 Received: from mail-oi0-f46.google.com ([209.85.218.46]:43216 "EHLO mail-oi0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750928AbdJaVgc (ORCPT ); Tue, 31 Oct 2017 17:36:32 -0400 X-Google-Smtp-Source: ABhQp+QPOn0OPlLaGQ6yjHLkwgdfHY6PI7VaWKJgGQCZwaez4TCRUN59zrMs4XiNgcSJkWP3Bj2XX2EyDb+UbVb/QEQ= MIME-Version: 1.0 In-Reply-To: <20171031165913.GH26128@quack2.suse.cz> References: <20171019144811.2144678-1-arnd@arndb.de> <20171019151737.GC17891@quack2.suse.cz> <20171031165913.GH26128@quack2.suse.cz> From: Arnd Bergmann Date: Tue, 31 Oct 2017 22:36:31 +0100 X-Google-Sender-Auth: ZdWML7BTsSiG1LCP09d-qDuDoJk Message-ID: Subject: Re: [PATCH v2 1/2] isofs: fix timestamps beyond 2027 To: Jan Kara Cc: y2038 Mailman List , Al Viro , Deepa Dinamani , Linux FS-devel Mailing List , Anders Larsen , "# 3.4.x" , David Howells , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 31, 2017 at 5:59 PM, Jan Kara wrote: > On Thu 19-10-17 17:29:12, Arnd Bergmann wrote: >> On Thu, Oct 19, 2017 at 5:17 PM, Jan Kara wrote: >> >> >> >> - year = p[0]; >> >> + year = (int)(u8)p[0]; >> > >> > The cast seems unnecessary now? >> > >> >> Sorry, I must have rebased the patch incorrectly, this was intended to >> be removed >> of course. > > OK, I've picked up this patch to my tree with this correction. Thanks! I was planning to send the fixed version but didn't get around to it before ELC, and by now I had forgotten about it. Arnd