All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>,
	LKML <linux-kernel@vger.kernel.org>,
	linuxppc-dev@ozlabs.org, Andy Whitcroft <apw@shadowen.org>,
	Balbir Singh <balbir@linux.vnet.ibm.com>,
	linux-scsi@vger.kernel.org, "Rafael J. Wysocki" <rjw@sisk.pl>,
	Matthew Wilcox <willy@debian.org>
Subject: Re: [BUG] 2.6.24-rc3-git2 softlockup detected
Date: Fri, 30 Nov 2007 12:58:06 +0530	[thread overview]
Message-ID: <474FBB86.5000004@linux.vnet.ibm.com> (raw)
In-Reply-To: <20071129230204.8698f47e.akpm@linux-foundation.org>

Andrew Morton wrote:
> On Thu, 29 Nov 2007 23:00:47 -0800 Andrew Morton <akpm@linux-foundation.org> wrote:
> 
>> On Fri, 30 Nov 2007 01:39:29 -0500 Kyle McMartin <kyle@mcmartin.ca> wrote:
>>
>>> On Thu, Nov 29, 2007 at 12:35:33AM -0800, Andrew Morton wrote:
>>>> ten million is close enough to infinity for me to assume that we broke the
>>>> driver and that's never going to terminate.
>>>>
>>> how about this? doesn't break things on my pa8800:
>>>
>>> diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.c b/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> index 463f119..ef01cb1 100644
>>> --- a/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> @@ -1037,10 +1037,13 @@ restart_test:
>>>  	/*
>>>  	 *  Wait 'til done (with timeout)
>>>  	 */
>>> -	for (i=0; i<SYM_SNOOP_TIMEOUT; i++)
>>> +	do {	
>>>  		if (INB(np, nc_istat) & (INTF|SIP|DIP))
>>>  			break;
>>> -	if (i>=SYM_SNOOP_TIMEOUT) {
>>> +		msleep(10);
>>> +	} while (i++ < SYM_SNOOP_TIMEOUT);
>>> +
>>> +	if (i >= SYM_SNOOP_TIMEOUT) {
>>>  		printf ("CACHE TEST FAILED: timeout.\n");
>>>  		return (0x20);
>>>  	}
>>> diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.h b/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> index ad07880..85c483b 100644
>>> --- a/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> @@ -339,7 +339,7 @@
>>>  /*
>>>   *  Misc.
>>>   */
>>> -#define SYM_SNOOP_TIMEOUT (10000000)
>>> +#define SYM_SNOOP_TIMEOUT (1000)
>>>  #define BUS_8_BIT	0
>>>  #define BUS_16_BIT	1
>>>  
>> That might be the fix, but do we know what we're actually fixing?  afaik
>> 2.6.24-rc3 doesn't get this timeout, 2.6.24-rc3-mm2 does get it and we
>> don't know why?
>>
> 
> <looks at Subject:>
> 
> <Checks that Rafael was cc'ed>
> 
> So 2.6.24-rc3 was OK and 2.6.24-rc3-git2 is not?

Yes, the 2.6.24-rc3 was Ok and this is seen from 2.6.24-rc3-git2/3/4.

-- 
Thanks & Regards,
Kamalesh Babulal,
Linux Technology Center,
IBM, ISTL.

WARNING: multiple messages have this Message-ID (diff)
From: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
	linux-scsi@vger.kernel.org, Matthew Wilcox <willy@debian.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Kyle McMartin <kyle@mcmartin.ca>,
	linuxppc-dev@ozlabs.org, Balbir Singh <balbir@linux.vnet.ibm.com>
Subject: Re: [BUG] 2.6.24-rc3-git2 softlockup detected
Date: Fri, 30 Nov 2007 12:58:06 +0530	[thread overview]
Message-ID: <474FBB86.5000004@linux.vnet.ibm.com> (raw)
In-Reply-To: <20071129230204.8698f47e.akpm@linux-foundation.org>

Andrew Morton wrote:
> On Thu, 29 Nov 2007 23:00:47 -0800 Andrew Morton <akpm@linux-foundation.org> wrote:
> 
>> On Fri, 30 Nov 2007 01:39:29 -0500 Kyle McMartin <kyle@mcmartin.ca> wrote:
>>
>>> On Thu, Nov 29, 2007 at 12:35:33AM -0800, Andrew Morton wrote:
>>>> ten million is close enough to infinity for me to assume that we broke the
>>>> driver and that's never going to terminate.
>>>>
>>> how about this? doesn't break things on my pa8800:
>>>
>>> diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.c b/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> index 463f119..ef01cb1 100644
>>> --- a/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.c
>>> @@ -1037,10 +1037,13 @@ restart_test:
>>>  	/*
>>>  	 *  Wait 'til done (with timeout)
>>>  	 */
>>> -	for (i=0; i<SYM_SNOOP_TIMEOUT; i++)
>>> +	do {	
>>>  		if (INB(np, nc_istat) & (INTF|SIP|DIP))
>>>  			break;
>>> -	if (i>=SYM_SNOOP_TIMEOUT) {
>>> +		msleep(10);
>>> +	} while (i++ < SYM_SNOOP_TIMEOUT);
>>> +
>>> +	if (i >= SYM_SNOOP_TIMEOUT) {
>>>  		printf ("CACHE TEST FAILED: timeout.\n");
>>>  		return (0x20);
>>>  	}
>>> diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.h b/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> index ad07880..85c483b 100644
>>> --- a/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.h
>>> @@ -339,7 +339,7 @@
>>>  /*
>>>   *  Misc.
>>>   */
>>> -#define SYM_SNOOP_TIMEOUT (10000000)
>>> +#define SYM_SNOOP_TIMEOUT (1000)
>>>  #define BUS_8_BIT	0
>>>  #define BUS_16_BIT	1
>>>  
>> That might be the fix, but do we know what we're actually fixing?  afaik
>> 2.6.24-rc3 doesn't get this timeout, 2.6.24-rc3-mm2 does get it and we
>> don't know why?
>>
> 
> <looks at Subject:>
> 
> <Checks that Rafael was cc'ed>
> 
> So 2.6.24-rc3 was OK and 2.6.24-rc3-git2 is not?

Yes, the 2.6.24-rc3 was Ok and this is seen from 2.6.24-rc3-git2/3/4.

-- 
Thanks & Regards,
Kamalesh Babulal,
Linux Technology Center,
IBM, ISTL.

  reply	other threads:[~2007-11-30  7:28 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-28  6:29 [BUG] 2.6.24-rc3-git2 softlockup detected Kamalesh Babulal
2007-11-28  6:53 ` Andrew Morton
2007-11-28  6:53   ` Andrew Morton
2007-11-28  7:17   ` Kamalesh Babulal
2007-11-28  7:17     ` Kamalesh Babulal
2007-11-28  7:25     ` Andrew Morton
2007-11-28  7:25       ` Andrew Morton
2007-11-29  6:31       ` Kamalesh Babulal
2007-11-29  6:31         ` Kamalesh Babulal
2007-11-29  8:35         ` Andrew Morton
2007-11-29  8:35           ` Andrew Morton
2007-11-29  9:13           ` Kamalesh Babulal
2007-11-29  9:13             ` Kamalesh Babulal
2007-11-30  6:39           ` Kyle McMartin
2007-11-30  6:39             ` Kyle McMartin
2007-11-30  7:00             ` Andrew Morton
2007-11-30  7:00               ` Andrew Morton
2007-11-30  7:02               ` Andrew Morton
2007-11-30  7:02                 ` Andrew Morton
2007-11-30  7:28                 ` Kamalesh Babulal [this message]
2007-11-30  7:28                   ` Kamalesh Babulal
2007-12-03 21:11                   ` Andrew Morton
2007-12-03 21:11                     ` Andrew Morton
2007-12-04 12:20                   ` Ingo Molnar
2007-12-04 12:20                     ` Ingo Molnar
2007-12-04 14:57                     ` Kamalesh Babulal
2007-12-04 14:57                       ` Kamalesh Babulal
2007-12-04 20:55                       ` Ingo Molnar
2007-12-04 20:55                         ` Ingo Molnar

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=474FBB86.5000004@linux.vnet.ibm.com \
    --to=kamalesh@linux.vnet.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=apw@shadowen.org \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=kyle@mcmartin.ca \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=rjw@sisk.pl \
    --cc=willy@debian.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.