From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from fed1rmmtao03.cox.net (fed1rmmtao03.cox.net [68.230.241.36]) by ozlabs.org (Postfix) with ESMTP id 6D81F67B23 for ; Sat, 9 Apr 2005 00:38:34 +1000 (EST) Date: Fri, 8 Apr 2005 07:38:28 -0700 From: Tom Rini To: Andrew Morton , Kernel Mailing List , linuxppc-dev@ozlabs.org Message-ID: <20050408143828.GW3396@smtp.west.cox.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Giovambattista Pulcini Subject: [PATCH 2.6.12-rc2]: ppc32: Fix a problem with NTP on !(chrp||gemini) List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , The following problem was found by Giovambattista Pulcini , who also provided a partial patch, and this has been verified by our time guru Gabriel Paubert . The problem is that in do_settimeofday() we always set time_state to TIME_ERROR and except on two platforms, never re-set it. This meant that ntp_gettime() and ntp_adjtime() always returned TIME_ERROR, incorrectly. Based on Gabriel's analysis, time_state is used for leap-second processing, and ppc shouldn't be mucking with it. From: Giovambattista Pulcini Signed-off-by: Tom Rini --- 1.37/arch/ppc/kernel/time.c 2005-01-20 22:02:08 -07:00 +++ edited/arch/ppc/kernel/time.c 2005-04-08 07:30:46 -07:00 @@ -272,7 +272,6 @@ time_adjust = 0; /* stop active adjtime() */ time_status |= STA_UNSYNC; - time_state = TIME_ERROR; /* p. 24, (a) */ time_maxerror = NTP_PHASE_LIMIT; time_esterror = NTP_PHASE_LIMIT; write_sequnlock_irqrestore(&xtime_lock, flags); --- 1.11/arch/ppc/platforms/chrp_time.c 2005-01-25 14:50:14 -07:00 +++ edited/arch/ppc/platforms/chrp_time.c 2005-04-08 07:30:53 -07:00 @@ -115,8 +115,6 @@ chrp_cmos_clock_write(save_control, RTC_CONTROL); chrp_cmos_clock_write(save_freq_select, RTC_FREQ_SELECT); - if ( (time_state == TIME_ERROR) || (time_state == TIME_BAD) ) - time_state = TIME_OK; spin_unlock(&rtc_lock); return 0; } --- 1.17/arch/ppc/platforms/gemini_setup.c 2005-03-13 16:29:43 -07:00 +++ edited/arch/ppc/platforms/gemini_setup.c 2005-04-08 07:30:56 -07:00 @@ -433,9 +433,6 @@ /* done writing */ gemini_rtc_write(reg, M48T35_RTC_CONTROL); - if ((time_state == TIME_ERROR) || (time_state == TIME_BAD)) - time_state = TIME_OK; - return 0; } -- Tom Rini http://gate.crashing.org/~trini/