X-MimeOLE: Produced By Microsoft Exchange V6.5
Received: by onstor-exch02.onstor.net 
	id <01C7C198.CB0490E3@onstor-exch02.onstor.net>; Sun, 8 Jul 2007 11:47:18 -0800
MIME-Version: 1.0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Content-class: urn:content-classes:message
Subject: RE: please review
Date: Sun, 8 Jul 2007 11:47:18 -0800
Message-ID: <BB375AF679D4A34E9CA8DFA650E2B04E046A8A5B@onstor-exch02.onstor.net>
In-Reply-To: <20070708123638.58cc3587@ripper.onstor.net>
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
Thread-Topic: please review
Thread-Index: AcfBl048SXj7XnH3RRqCLAD/cabFhAAAOkbg
References: <20070705175356.5ff0f5df@ripper.onstor.net><BB375AF679D4A34E9CA8DFA650E2B04E046A87CA@onstor-exch02.onstor.net><20070706145649.5bb21b56@ripper.onstor.net><BB375AF679D4A34E9CA8DFA650E2B04E046A8A54@onstor-exch02.onstor.net><20070708122802.215789a2@ripper.onstor.net><BB375AF679D4A34E9CA8DFA650E2B04E046A8A59@onstor-exch02.onstor.net> <20070708123638.58cc3587@ripper.onstor.net>
From: "Maxim Kozlovsky" <maxim.kozlovsky@onstor.com>
To: "Andy Sharp" <andy.sharp@onstor.com>

This works:

	else if (pending & STATUSF_IP2)
        do_IRQ(2);
	else if (pending & STATUSF_IP3)
        ll_bc_mv64440_irq();

This does not:

	else if (pending & STATUSF_IP2)
        ll_bc_mv64440_irq();
	else if (pending & STATUSF_IP3)
        do_IRQ(3);


>-----Original Message-----
>From: Andy Sharp
>Sent: Sunday, July 08, 2007 12:37 PM
>To: Maxim Kozlovsky
>Subject: Re: please review
>
>On Sun, 8 Jul 2007 12:33:56 -0700 "Maxim Kozlovsky"
><maxim.kozlovsky@onstor.com> wrote:
>
>> Ok, 3 as in the original. I've tried you modified code and I did not
>> get the interrupts for the mgmt bus driver.
>
>OK, so before I go a-changin' it, did you try it with 3? ~:^)
>
>> >-----Original Message-----
>> >From: Andy Sharp
>> >Sent: Sunday, July 08, 2007 12:28 PM
>> >To: Maxim Kozlovsky
>> >Subject: Re: please review
>> >
>> >On Sun, 8 Jul 2007 10:56:28 -0700 "Maxim Kozlovsky"
>> ><maxim.kozlovsky@onstor.com> wrote:
>> >
>> >> Irq.c:
>> >>
>> >> You are using the wrong line, should be 2 as in the original.
>> >
>> >.
>> >.
>> >.
>> >	else if (pending & STATUSF_IP2)
>> >		ll_bc_mv64440_irq();
>> >
>> >.
>> >.
>> >.
>> >
>> >	/* set up the cascading interrupts */
>> >	setup_irq(2, &cascade_mv64440);
>> >.
>> >.
>> >.
>> >
>> >It looks to me like I am using 2.  ?
