* AIC7xxx driver build failure
@ 2002-10-20 2:59 Inaky Perez-Gonzalez
2002-10-20 6:30 ` Justin T. Gibbs
0 siblings, 1 reply; 8+ messages in thread
From: Inaky Perez-Gonzalez @ 2002-10-20 2:59 UTC (permalink / raw)
To: Justin T. Gibbs, linux-kernel
The AIC 7xxx driver fails to build because the Makefile fails to
specify the correct include path to aicasm.
Justin, are you getting this?
This patch is against 2.5.44.
diff -u drivers/scsi/aic7xxx/Makefile:1.1.1.2 drivers/scsi/aic7xxx/Makefile:1.1.1.1.4.2
--- drivers/scsi/aic7xxx/Makefile:1.1.1.2 Fri Oct 18 22:54:44 2002
+++ drivers/scsi/aic7xxx/Makefile Sat Oct 19 18:42:32 2002
@@ -39,7 +39,7 @@
$(obj)/aic7xxx_seq.h: $(src)/aic7xxx.seq $(src)/aic7xxx.reg \
$(obj)/aicasm/aicasm
- $(obj)/aicasm/aicasm -I. -r $(obj)/aic7xxx_reg.h \
+ $(obj)/aicasm/aicasm -I$(obj) -r $(obj)/aic7xxx_reg.h \
-o $(obj)/aic7xxx_seq.h $(src)/aic7xxx.seq
$(obj)/aic7xxx_reg.h: $(obj)/aix7xxx_seq.h
--
Inaky Perez-Gonzalez -- Not speaking for Intel - opinions are my own [or my fault]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: AIC7xxx driver build failure
2002-10-20 2:59 AIC7xxx driver build failure Inaky Perez-Gonzalez
@ 2002-10-20 6:30 ` Justin T. Gibbs
2002-10-21 12:15 ` Alan Cox
0 siblings, 1 reply; 8+ messages in thread
From: Justin T. Gibbs @ 2002-10-20 6:30 UTC (permalink / raw)
To: Inaky Perez-Gonzalez, linux-kernel
> The AIC 7xxx driver fails to build because the Makefile fails to
> specify the correct include path to aicasm.
>
> Justin, are you getting this?
No, because this bug doesn't exist in the latest version of the driver
in my tree or the last set of patches I sent to Linus (a month ago??).
--
Justin
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: AIC7xxx driver build failure
2002-10-20 6:30 ` Justin T. Gibbs
@ 2002-10-21 12:15 ` Alan Cox
2002-10-23 3:44 ` Justin T. Gibbs
2002-11-20 23:02 ` Justin T. Gibbs
0 siblings, 2 replies; 8+ messages in thread
From: Alan Cox @ 2002-10-21 12:15 UTC (permalink / raw)
To: Justin T. Gibbs; +Cc: Inaky Perez-Gonzalez, Linux Kernel Mailing List
On Sun, 2002-10-20 at 07:30, Justin T. Gibbs wrote:
> > The AIC 7xxx driver fails to build because the Makefile fails to
> > specify the correct include path to aicasm.
> >
> > Justin, are you getting this?
>
> No, because this bug doesn't exist in the latest version of the driver
> in my tree or the last set of patches I sent to Linus (a month ago??).
Care to send me the stuff Linus has dropped ?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: AIC7xxx driver build failure
2002-10-21 12:15 ` Alan Cox
@ 2002-10-23 3:44 ` Justin T. Gibbs
2002-11-20 23:02 ` Justin T. Gibbs
1 sibling, 0 replies; 8+ messages in thread
From: Justin T. Gibbs @ 2002-10-23 3:44 UTC (permalink / raw)
To: Alan Cox; +Cc: Inaky Perez-Gonzalez, Linux Kernel Mailing List
> On Sun, 2002-10-20 at 07:30, Justin T. Gibbs wrote:
>> > The AIC 7xxx driver fails to build because the Makefile fails to
>> > specify the correct include path to aicasm.
>> >
>> > Justin, are you getting this?
>>
>> No, because this bug doesn't exist in the latest version of the driver
>> in my tree or the last set of patches I sent to Linus (a month ago??).
>
> Care to send me the stuff Linus has dropped ?
I will send a new driver update as soon as our internal testing
of the latest aic7xxx and aic79xx drivers has been completed.
Since this new version adds Domain Validation, it will be a little
bit. The last version I sent to Linus, which were cut before
for the recent queue depth API change, can be found here:
http://people.FreeBSD.org/~gibbs/linux/linux-2.5-aic79xxx.tar.gz
--
Justin
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: AIC7xxx driver build failure
2002-10-21 12:15 ` Alan Cox
2002-10-23 3:44 ` Justin T. Gibbs
@ 2002-11-20 23:02 ` Justin T. Gibbs
1 sibling, 0 replies; 8+ messages in thread
From: Justin T. Gibbs @ 2002-11-20 23:02 UTC (permalink / raw)
To: Alan Cox; +Cc: Inaky Perez-Gonzalez, Linux Kernel Mailing List
> On Sun, 2002-10-20 at 07:30, Justin T. Gibbs wrote:
>> > The AIC 7xxx driver fails to build because the Makefile fails to
>> > specify the correct include path to aicasm.
>> >
>> > Justin, are you getting this?
>>
>> No, because this bug doesn't exist in the latest version of the driver
>> in my tree or the last set of patches I sent to Linus (a month ago??).
>
> Care to send me the stuff Linus has dropped ?
Updated aic7xxx and aic79xx drivers for 2.4 and 2.5 can be found here:
http://people.FreeBSD.org/~gibbs/linux/tarballs
Notable changes:
o Both drivers support Domain Validation
o Memory mapped I/O is now a config option
o New memory mapped I/O register test that will hopefully
weed out broken VIA chipsets
o The reboot notifier hook has been disabled. The driver wants
to shut itself down prior to reboot, but the reboot notifier is
now called too early in 2.5.X for this to be effective. It looks
like it might be possible for the driver to grow a device shutdown
routine, but it was not obvious with a quick look at this new feature
how to ensure that the [sd, sr, etc.] driver's shutdown routines
would be called prior to the aic7xxx driver's routine. Some guidance
in this area would be appreciated.
o Tag depth changes are now communicated to the midlayer.
--
Justin
^ permalink raw reply [flat|nested] 8+ messages in thread
* AIC7xxx driver build failure
@ 2002-10-20 3:03 Inaky Perez-Gonzalez
0 siblings, 0 replies; 8+ messages in thread
From: Inaky Perez-Gonzalez @ 2002-10-20 3:03 UTC (permalink / raw)
To: Justin T. Gibbs, linux-kernel
The AIC 7xxx driver fails to build because the Makefile fails to
specify the correct include path to aicasm.
Justin, are you getting this?
This patch is against 2.5.44.
diff -u drivers/scsi/aic7xxx/Makefile:1.1.1.2 drivers/scsi/aic7xxx/Makefile:1.1.1.1.4.2
--- drivers/scsi/aic7xxx/Makefile:1.1.1.2 Fri Oct 18 22:54:44 2002
+++ drivers/scsi/aic7xxx/Makefile Sat Oct 19 18:42:32 2002
@@ -39,7 +39,7 @@
$(obj)/aic7xxx_seq.h: $(src)/aic7xxx.seq $(src)/aic7xxx.reg \
$(obj)/aicasm/aicasm
- $(obj)/aicasm/aicasm -I. -r $(obj)/aic7xxx_reg.h \
+ $(obj)/aicasm/aicasm -I$(obj) -r $(obj)/aic7xxx_reg.h \
-o $(obj)/aic7xxx_seq.h $(src)/aic7xxx.seq
$(obj)/aic7xxx_reg.h: $(obj)/aix7xxx_seq.h
--
Inaky Perez-Gonzalez -- Not speaking for Intel - opinions are my own [or my fault]
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: AIC7xxx driver build failure
@ 2002-10-20 6:36 Perez-Gonzalez, Inaky
0 siblings, 0 replies; 8+ messages in thread
From: Perez-Gonzalez, Inaky @ 2002-10-20 6:36 UTC (permalink / raw)
To: 'Justin T. Gibbs', lkml (E-mail)
> > The AIC 7xxx driver fails to build because the Makefile fails to
> > specify the correct include path to aicasm.
> >
> > Justin, are you getting this?
>
> No, because this bug doesn't exist in the latest version of the driver
> in my tree or the last set of patches I sent to Linus (a month ago??).
I could not find anywhere where it was reported, so will stop bugging.
Inaky Perez-Gonzalez -- Not speaking for Intel - opinions are my own [or my
fault]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: AIC7xxx driver build failure
@ 2002-10-20 15:52 James Bottomley
0 siblings, 0 replies; 8+ messages in thread
From: James Bottomley @ 2002-10-20 15:52 UTC (permalink / raw)
To: Justin T. Gibbs; +Cc: linux-kernel, James.Bottomley
> No, because this bug doesn't exist in the latest version of the driver
> in my tree or the last set of patches I sent to Linus (a month ago??).
I think I missed this on linux-scsi. However, there have been some fairly
major scsi fixes which necessitated changes to your driver (among others) so
it could be that the patches now reject. Could you rebase to 2.5.44 and
resend to linux-scsi (or just post a URL, if that's easier)?
Thanks,
James
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2002-11-20 22:55 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-20 2:59 AIC7xxx driver build failure Inaky Perez-Gonzalez
2002-10-20 6:30 ` Justin T. Gibbs
2002-10-21 12:15 ` Alan Cox
2002-10-23 3:44 ` Justin T. Gibbs
2002-11-20 23:02 ` Justin T. Gibbs
-- strict thread matches above, loose matches on Subject: below --
2002-10-20 3:03 Inaky Perez-Gonzalez
2002-10-20 6:36 Perez-Gonzalez, Inaky
2002-10-20 15:52 James Bottomley
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.