From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from kvm5.telegraphics.com.au (kvm5.telegraphics.com.au [98.124.60.144]) by lists.ozlabs.org (Postfix) with ESMTP id 41Pknq0qzqzDr2J for ; Tue, 10 Jul 2018 11:17:18 +1000 (AEST) Date: Tue, 10 Jul 2018 11:18:34 +1000 (AEST) From: Finn Thain To: Arnd Bergmann cc: Meelis Roos , Mathieu Malaterre , Paul Mackerras , Michael Ellerman , Geert Uytterhoeven , Joshua Thompson , Benjamin Herrenschmidt , Greg Ungerer , linux-m68k@vger.kernel.org, linuxppc-dev , LKML , y2038 Mailman List , Andreas Schwab Subject: Re: [PATCH 1/3] [v2] powerpc: mac: fix rtc read/write functions In-Reply-To: Message-ID: References: <20180619140229.3615110-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 9 Jul 2018, Arnd Bergmann wrote: > > The most likely explanation I have here is that the RTC was indeed set > to an incorrect date, either because of a depleted battery (not unlikely > for a ~15 year old box) or because it was previously stored incorrectly. The PowerMac stores the GMT offset in NVRAM, and this gets used to initialize timezone_offset. If timezone_offset was negative and now.tv_sec was zero, I think this could store a 1969 date in the RTC: int update_persistent_clock64(struct timespec64 now) { struct rtc_time tm; if (!ppc_md.set_rtc_time) return -ENODEV; rtc_time64_to_tm(now.tv_sec + 1 + timezone_offset, &tm); return ppc_md.set_rtc_time(&tm); } But maybe now.tv_sec can be shown to be greater than timezone_offset. Then, what would happen when the timezone in /etc/localtime disagrees with the timezone_offset stored in NVRAM (PRAM)? Besides that, if the battery went flat, what use is a backtrace? Why not scrap the WARN_ON()? --