All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe Gerum <rpm@xenomai.org>
To: Ralf <ralf.moder@mail.de>, xenomai@xenomai.org
Subject: Re: [Xenomai] error / bugfix in ipipe-core-3-10.28-powerpc-1.patch (from eldk 5.5, company denx)
Date: Mon, 14 Apr 2014 14:20:25 +0200	[thread overview]
Message-ID: <534BD289.1010802@xenomai.org> (raw)
In-Reply-To: <534BD044.9010400@mail.de>

On 04/14/2014 02:10 PM, Ralf wrote:
> Am 14.04.2014 09:57, schrieb Philippe Gerum:
>> On 04/14/2014 08:55 AM, Ralf wrote:
>>> Am 28.03.2014 08:39, schrieb Ralf:
>>>> Hello,
>>>>
>>>> i have found an error in the ipipe-patch above.
>>>> Here ist the error description:
>>>>
>>>> Our system:
>>>> Linux 3.10.28 with xenomai 2.6 patch on a PowerPC MPC5200
>>>>
>>>> Error description:
>>>> We use the xenomai-(posix-skin-)function clock_gettime(
>>>> CLOCK_HOST_REALTIME, ..) to read out our system time. Thus, we set up a
>>>> NTP clock that runs on an FPGA. Later, we compare the system time and
>>>> NTP time deviations. Unfortunately we recognize in any comparison with
>>>> the nanoseconds a deviation of at least 100 million nsecs. We then
>>>> started the xenomai test suite and get the following prints on our console:
>>>>
>> [snip]
>>
>>>> tk_xtime() makes a shift to the right on the nanoseconds. This shift is
>>>> at our clock source 24. If this shift now run twice consecutively, that
>>>> explains naturally why we only get the most significant 8 bits of the
>>>> nanosecond value.
>>>>
>>>> a fix that might solve the problem, looks like this
>>>>
>>>> void ipipe_update_hostrt(struct timekeeper *tk)
>>>> {
>>>>       struct ipipe_hostrt_data data;
>>>>       struct timespec xt;
>>>>
>>>> //     xt = tk_xtime(tk);
>>>>       ipipe_root_only();
>>>>       data.live = 1;
>>>>       data.cycle_last = tk->clock->cycle_last;
>>>>       data.mask = tk->clock->mask;
>>>>       data.mult = tk->mult;
>>>>       data.shift = tk->shift;
>>>>       data.wall_time_sec = tk->xtime_sec;
>>>>       data.wall_time_nsec = (long)tk->xtime_nsec;
>>>>       data.wall_to_monotonic = tk->wall_to_monotonic;
>>>>       __ipipe_notify_kevent(IPIPE_KEVT_HOSTRT, &data);
>>>> }
>>>>
>>> Has anyone observed the same thing? Do you think that bugfix correct?
>>> How can i bring it into mainline? I would be very grateful for some help.
>>>
>> Good catch, thanks. This bug is introduced by a work-around specific to the few architectures which do not implement the newest VSYSCALL interface yet, like powerpc. However, the suggested change would break others which do, could you test the patch below instead? TIA,
>>
>> diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c
>> index e1214ba..5b01356 100644
>> --- a/arch/powerpc/kernel/time.c
>> +++ b/arch/powerpc/kernel/time.c
>> @@ -749,7 +749,7 @@ static cycle_t timebase_read(struct clocksource *cs)
>>    * API.
>>    */
>>   static inline void update_hostrt(struct timespec *wall_time, struct timespec *wtm,
>> -				 struct clocksource *clock, u32 mult)
>> +				 struct clocksource *clock, u32 mult, u32 shift)
>>   {
>>   	/*
>>   	 * This is a temporary work-around until powerpc implements
>> @@ -761,7 +761,7 @@ static inline void update_hostrt(struct timespec *wall_time, struct timespec *wt
>>   		.shift = clock->shift,
>>   		.mult = mult,
>>   		.xtime_sec = wall_time->tv_sec,
>> -		.xtime_nsec = wall_time->tv_nsec,
>> +		.xtime_nsec = wall_time->tv_nsec << shift,
> Unfortunately, this solution does not work on our powerpc, because
> "wall_time->tv_nsec" is only a 32 bit value and "xtime_nsec" a 64 bit
> value. It seems that the shift on the 32 bit value happens first and
> only then the assignment to the 64 bit value. So the shifted bits
> greater than 32 bit are lost.
> A cast avoids this problem:
>
>                          .xtime_nsec = (u64)wall_time->tv_nsec << shift;
>
> After that everything works well.

This make sense. I'll merge this fix, thanks.

-- 
Philippe.


  reply	other threads:[~2014-04-14 12:20 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <5334334D.4050300@mail.de>
2014-03-28  7:39 ` [Xenomai] error / bugfix in ipipe-core-3-10.28-powerpc-1.patch (from eldk 5.5, company denx) Ralf
2014-04-14  6:55   ` Ralf
2014-04-14  7:57     ` Philippe Gerum
2014-04-14 12:10       ` Ralf
2014-04-14 12:20         ` Philippe Gerum [this message]
2014-04-14 12:31           ` Philippe Gerum

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=534BD289.1010802@xenomai.org \
    --to=rpm@xenomai.org \
    --cc=ralf.moder@mail.de \
    --cc=xenomai@xenomai.org \
    /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.