All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Xunlei Pang <xlpang@126.com>
Cc: linux-kernel@vger.kernel.org, rtc-linux@googlegroups.com,
	Alessandro Zummo <a.zummo@towertech.it>,
	John Stultz <john.stultz@linaro.org>,
	Arnd Bergmann <arnd@arndb.de>,
	Xunlei Pang <pang.xunlei@linaro.org>, CIH <cih@coventive.com>,
	Nicolas Pitre <nico@fluxnic.net>,
	Andrew Christian <andrew.christian@hp.com>,
	Richard Purdie <rpurdie@rpsys.net>
Subject: Re: [5/5] drivers/rtc/sa1100: Replace deprecated rtc_tm_to_time() and rtc_time_to_tm()
Date: Thu, 30 Apr 2015 01:28:24 +0200	[thread overview]
Message-ID: <20150429232824.GC3242@piout.net> (raw)
In-Reply-To: <1429089611-29776-5-git-send-email-xlpang@126.com>

Hi,

On 15/04/2015 at 17:20:11 +0800, Xunlei Pang wrote :
> From: Xunlei Pang <pang.xunlei@linaro.org>
> 
> The driver uses deprecated rtc_tm_to_time() and rtc_time_to_tm(),
> which will overflow in year 2106 on 32-bit machines.
> 
> This patch solves this by:
>  - Replacing rtc_tm_to_time() with rtc_tm_to_time64()
>  - Replacing rtc_time_to_tm() with rtc_time64_to_tm()
> 
> Cc: CIH <cih@coventive.com>
> Cc: Nicolas Pitre <nico@fluxnic.net>
> Cc: Andrew Christian <andrew.christian@hp.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Signed-off-by: Xunlei Pang <pang.xunlei@linaro.org>
> ---
>  drivers/rtc/rtc-sa1100.c | 21 +++++----------------
>  1 file changed, 5 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/rtc/rtc-sa1100.c b/drivers/rtc/rtc-sa1100.c
> index b6e1ca0..625a320 100644
> --- a/drivers/rtc/rtc-sa1100.c
> +++ b/drivers/rtc/rtc-sa1100.c
> @@ -157,19 +157,14 @@ static int sa1100_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
>  
>  static int sa1100_rtc_read_time(struct device *dev, struct rtc_time *tm)
>  {
> -	rtc_time_to_tm(RCNR, tm);
> +	rtc_time64_to_tm(RCNR, tm);
>  	return 0;
>  }
>  
>  static int sa1100_rtc_set_time(struct device *dev, struct rtc_time *tm)
>  {
> -	unsigned long time;
> -	int ret;
> -
> -	ret = rtc_tm_to_time(tm, &time);
> -	if (ret == 0)
> -		RCNR = time;
> -	return ret;
> +	RCNR = rtc_tm_to_time64(tm);

For the same reason that Russell pointed in patch 4/5, this hides that
it doesn't work after 2106-02-07 06:28:16 as the register is still 32
bits.
I would prefer that you return an error in that case.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

  reply	other threads:[~2015-04-29 23:28 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-15  9:20 [5/5] drivers/rtc/sa1100: Replace deprecated rtc_tm_to_time() and rtc_time_to_tm() Xunlei Pang
2015-04-15  9:20 ` [PATCH 5/5] " Xunlei Pang
2015-04-29 23:28 ` Alexandre Belloni [this message]
2015-05-29 14:32   ` [rtc-linux] Re: [5/5] " pang.xunlei
     [not found]   ` <OF1F6D43BC.C38481A0-ON48257E54.004FA90B-48257E54.004FD9D8@LocalDomain>
2015-05-30 10:05     ` pang.xunlei
2015-06-01 19:43       ` Arnd Bergmann
2015-06-01 19:43         ` Arnd Bergmann
2015-06-01 19:59         ` [rtc-linux] " Alexandre Belloni
2015-06-01 19:59           ` Alexandre Belloni
2015-06-03 14:17           ` [rtc-linux] " Alessandro Zummo
2015-06-03 14:17             ` Alessandro Zummo
  -- strict thread matches above, loose matches on Subject: below --
2015-04-15  9:20 [3/5] drivers/rtc/sunxi: Replace deprecated rtc_tm_to_time() Xunlei Pang
2015-04-15  9:20 ` [PATCH 3/5] " Xunlei Pang
2015-04-15  9:20 [2/5] drivers/rtc/isl1208: " Xunlei Pang
2015-04-15  9:20 ` [PATCH 2/5] " Xunlei Pang
2015-04-15  9:20 [1/5] drivers/rtc/pcf8563: Replace deprecated rtc_time_to_tm() and rtc_tm_to_time() Xunlei Pang
2015-04-15  9:20 ` [PATCH 1/5] " Xunlei Pang
2015-04-15  9:20 ` [4/5] drivers/rtc/pl030: Replace deprecated rtc_tm_to_time() and rtc_time_to_tm() Xunlei Pang
2015-04-15  9:20   ` [PATCH 4/5] " Xunlei Pang
2015-04-15  9:35   ` [rtc-linux] " Russell King - ARM Linux
2015-04-15  9:35     ` Russell King - ARM Linux

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150429232824.GC3242@piout.net \
    --to=alexandre.belloni@free-electrons.com \
    --cc=a.zummo@towertech.it \
    --cc=andrew.christian@hp.com \
    --cc=arnd@arndb.de \
    --cc=cih@coventive.com \
    --cc=john.stultz@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nico@fluxnic.net \
    --cc=pang.xunlei@linaro.org \
    --cc=rpurdie@rpsys.net \
    --cc=rtc-linux@googlegroups.com \
    --cc=xlpang@126.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.