* Another 2.4.7 build failure
@ 2001-07-21 20:28 Filip Van Raemdonck
2001-07-21 22:02 ` Alexander Griesser
0 siblings, 1 reply; 4+ messages in thread
From: Filip Van Raemdonck @ 2001-07-21 20:28 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1712 bytes --]
Building fails for me with following error:
make[4]: Entering directory
`/home/admin/mechanix/srcd/linux/linux/drivers/block'
gcc -D__KERNEL__ -I/home/admin/mechanix/srcd/linux/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=i586 -DEXPORT_SYMTAB -c ll_rw_blk.c
ll_rw_blk.c:25: linux/completion.h: No such file or directory
ll_rw_blk.c: In function `attempt_merge':
ll_rw_blk.c:630: structure has no member named `waiting'
ll_rw_blk.c: In function `__make_request':
ll_rw_blk.c:815: structure has no member named `waiting'
ll_rw_blk.c: In function `ll_rw_block':
ll_rw_blk.c:1051: `end_buffer_io_sync' undeclared (first use in this function)
ll_rw_blk.c:1051: (Each undeclared identifier is reported only once
ll_rw_blk.c:1051: for each function it appears in.)
ll_rw_blk.c: In function `end_that_request_last':
ll_rw_blk.c:1144: structure has no member named `waiting'
ll_rw_blk.c:1145: warning: implicit declaration of function `complete'
ll_rw_blk.c:1145: structure has no member named `waiting'
make[4]: *** [ll_rw_blk.o] Error 1
make[4]: Leaving directory `/home/admin/mechanix/srcd/linux/linux/drivers/block'
make[3]: *** [first_rule] Error 2
make[3]: Leaving directory `/home/admin/mechanix/srcd/linux/linux/drivers/block'
make[2]: *** [_subdir_block] Error 2
make[2]: Leaving directory `/home/admin/mechanix/srcd/linux/linux/drivers'
make[1]: *** [_dir_drivers] Error 2
make[1]: Leaving directory `/home/admin/mechanix/srcd/linux/linux'
make: *** [stamp-build] Error 2
Regards,
Filip
--
"The only stupid question is the unasked one."
-- Martin Schulze
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Another 2.4.7 build failure
2001-07-21 20:28 Another 2.4.7 build failure Filip Van Raemdonck
@ 2001-07-21 22:02 ` Alexander Griesser
2001-07-21 22:13 ` Jeff Garzik
0 siblings, 1 reply; 4+ messages in thread
From: Alexander Griesser @ 2001-07-21 22:02 UTC (permalink / raw)
To: linux-kernel
On Sat, Jul 21, 2001 at 10:28:26PM +0200, you wrote:
> Building fails for me with following error:
> ll_rw_blk.c:25: linux/completion.h: No such file or directory
Maybe a bad patch?
$TOPDIR/include/linux/completion.h exists, at least on my platform :)
regards, alexx
--
| .-. | Alexander Griesser <tuxx@aon.at> -=- ICQ:63180135 | .''`. |
| /v\ | http://www.tuxx-home.at -=- Linux Version 2.4.7 | : :' : |
| /( )\ | FAQ zu at.linux: http://alfie.ist.org/LinuxFAQ | `. `' |
| ^^ ^^ `---------------------------------------------------´ `- |
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Another 2.4.7 build failure
2001-07-21 22:02 ` Alexander Griesser
@ 2001-07-21 22:13 ` Jeff Garzik
2001-07-22 10:15 ` Filip Van Raemdonck
0 siblings, 1 reply; 4+ messages in thread
From: Jeff Garzik @ 2001-07-21 22:13 UTC (permalink / raw)
To: Alexander Griesser; +Cc: linux-kernel
Alexander Griesser wrote:
>
> On Sat, Jul 21, 2001 at 10:28:26PM +0200, you wrote:
> > Building fails for me with following error:
> > ll_rw_blk.c:25: linux/completion.h: No such file or directory
>
> Maybe a bad patch?
> $TOPDIR/include/linux/completion.h exists, at least on my platform :)
sounds like someone forgot a 'cvs add' or similar...
--
Jeff Garzik | "I wouldn't be so judgemental
Building 1024 | if you weren't such a sick freak."
MandrakeSoft | -- goats.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Another 2.4.7 build failure
2001-07-21 22:13 ` Jeff Garzik
@ 2001-07-22 10:15 ` Filip Van Raemdonck
0 siblings, 0 replies; 4+ messages in thread
From: Filip Van Raemdonck @ 2001-07-22 10:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Alexander Griesser, Jeff Garzik
[-- Attachment #1: Type: text/plain, Size: 726 bytes --]
On Sat, Jul 21, 2001 at 06:13:31PM -0400, Jeff Garzik wrote:
> Alexander Griesser wrote:
> >
> > On Sat, Jul 21, 2001 at 10:28:26PM +0200, you wrote:
> > > Building fails for me with following error:
> > > ll_rw_blk.c:25: linux/completion.h: No such file or directory
> >
> > Maybe a bad patch?
> > $TOPDIR/include/linux/completion.h exists, at least on my platform :)
>
> sounds like someone forgot a 'cvs add' or similar...
There seems to be more to this than just the missing header. Note that there
are also errors about missing struct members (for structures that are
apparently known, so supposedly defined elsewhere than that missing header).
Regards,
Filip
--
Steal this tagline. I did.
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-07-22 10:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-21 20:28 Another 2.4.7 build failure Filip Van Raemdonck
2001-07-21 22:02 ` Alexander Griesser
2001-07-21 22:13 ` Jeff Garzik
2001-07-22 10:15 ` Filip Van Raemdonck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox