All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Kevin D. Kissell" <kevink@paralogos.com>
To: Mikael Starvik <mikael.starvik@axis.com>
Cc: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>,
	Jesper Nilsson <Jesper.Nilsson@axis.com>
Subject: Re: SMTC lookup in smtc_distribute_timer
Date: Wed, 11 Nov 2009 11:23:28 -0800	[thread overview]
Message-ID: <4AFB0F30.7090209@paralogos.com> (raw)
In-Reply-To: <4BEA3FF3CAA35E408EA55C7BE2E61D0546A586E886@xmail3.se.axis.com>

Rather than just assume all is well, I really would appreciate it
of you could send a positive acknowledgement that it solves
the problem without causing the universe to implode, so that
Ralf can queue up the patch for the repository.

       Regards,

       Kevin K.

Mikael Starvik wrote:
> Yes, I thought of that variant after I sent the email yesterday.
> I'll change our local implementation. If you don't hear anything
> it works as expected in our case (it was pretty easy for us to
> repeat).
>
> /Mikael 
>
> -----Original Message-----
> From: Kevin D. Kissell [mailto:kevink@paralogos.com] 
> Sent: den 10 november 2009 20:46
> To: Mikael Starvik
> Cc: linux-mips@linux-mips.org; Jesper Nilsson
> Subject: Re: SMTC lookup in smtc_distribute_timer
>
> Your failure scenario looks plausible. Mea culpa.  However, I think that
> a more elegant and slightly smaller (depending on just how good
> the optimizer is) fix would be:
>
> diff --git a/arch/mips/kernel/cevt-smtc.c b/arch/mips/kernel/cevt-smtc.c
> index 98bd7de..b102e4f 100644
> --- a/arch/mips/kernel/cevt-smtc.c
> +++ b/arch/mips/kernel/cevt-smtc.c
> @@ -173,11 +173,12 @@ void smtc_distribute_timer(int vpe)
>         unsigned int mtflags;
>         int cpu;
>         struct clock_event_device *cd;
> -       unsigned long nextstamp = 0L;
> +       unsigned long nextstamp;
>         unsigned long reference;
>  
>  
>  repeat:
> +       nextstamp = 0L;
>         for_each_online_cpu(cpu) {
>             /*
>              * Find virtual CPUs within the current VPE who have
>
>
>
> I don't have access to SMTC-capable hardware just now, but
> I guess the way to test this would be to have a test program
> or kernel test stub program two events separated by the smallest
> possible increment, so that the second will have passed by the
> time interrupt services for the first.
>
>           Regards,
>
>           Kevin K.
>
> Mikael Starvik wrote:
>   
>> Ok, my guess is something like this:
>>
>> 1. At the end of smtc_distribute_timer, nextstamp is valid and has already 
>> passed so we goto repeat. 
>> 2. Nothing updates nextstamp (only updated if the timeout is in the future 
>> And we just decided it is in the past)
>> 3. At the end nextstamp still has the same value so it is still valid and
>> in the past.
>> 4. This repeats until read_c0_count has a value which causes nextstamp to
>> be in the future.
>>
>> One possible patch that seams to solve it for me below. This is probably 
>> not the correct solution so I'll need help from the SMTC experts to review
>> it and come up with the correct solution.
>>
>> Best Regards
>> /Mikael
>>
>> Index: cevt-smtc.c
>> ===================================================================
>> RCS file: /usr/local/cvs/linux/os/linux-2.6/arch/mips/kernel/cevt-smtc.c,v
>> retrieving revision 1.2
>> diff -u -r1.2 cevt-smtc.c
>> --- cevt-smtc.c	2 Sep 2009 10:07:51 -0000	1.2
>> +++ cevt-smtc.c	10 Nov 2009 11:40:31 -0000
>> @@ -223,8 +223,10 @@
>>  		write_c0_compare(nextstamp);
>>  		ehb();
>>  		if ((nextstamp - (unsigned long)read_c0_count())
>> -			> (unsigned long)LONG_MAX)
>> +			> (unsigned long)LONG_MAX) {
>> +				nextstamp = 0L;  
>>  				goto repeat;
>> +			}
>>  	}
>>  }
>>
>>
>>   
>>     
>
>   

  reply	other threads:[~2009-11-11 19:23 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-10 11:45 SMTC lookup in smtc_distribute_timer Mikael Starvik
2009-11-10 19:45 ` Kevin D. Kissell
2009-11-11  6:44   ` Mikael Starvik
2009-11-11 19:23     ` Kevin D. Kissell [this message]
2009-11-12  8:26       ` Mikael Starvik
2009-11-12  9:39         ` Kevin D. Kissell
2009-11-12 17:02           ` Ralf Baechle

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=4AFB0F30.7090209@paralogos.com \
    --to=kevink@paralogos.com \
    --cc=Jesper.Nilsson@axis.com \
    --cc=linux-mips@linux-mips.org \
    --cc=mikael.starvik@axis.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.