From: Eyal Lebedinsky <eyal@eyal.emu.id.au>
To: Andrea Arcangeli <andrea@suse.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.4.20pre10aa1- build problems
Date: Fri, 11 Oct 2002 12:51:04 +1000 [thread overview]
Message-ID: <3DA63C98.3C494DFF@eyal.emu.id.au> (raw)
In-Reply-To: <20021010230945.GB1251@dualathlon.random>
[-- Attachment #1: Type: text/plain, Size: 2184 bytes --]
1)
gcc -D__KERNEL__ -I/data2/usr/local/src/linux-2.4-pre-aa/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
-fomit-frame-pointer -pipe -mpreferred-stack-boundary=2 -march=i686
-malign-functions=4 -DMODULE -DMODVERSIONS -include
/data2/usr/local/src/linux-2.4-pre-aa/include/linux/modversions.h -I../
-DISP2200 -c qla2200.c -o qla2200.o
qla2200.c:24: warning: `ISP2200' redefined
*Initialization*:1: warning: this is the location of the previous
definition
In file included from qla2200.c:43:
qla2x00.c:14897: unknown field `varyio' specified in initializer
qla2x00.c:3402: warning: `qla2x00_biosparam' defined but not used
qla2x00.c:14948: warning: `qla2x00_print_scsi_cmd' defined but not used
qla2x00.c:15149: warning: `qla2x00_dump_requests' defined but not used
qla2x00.c:14355: warning: `qla2x00_add_link_b' defined but not used
qla2x00.c:14380: warning: `qla2x00_add_link_t' defined but not used
qla2x00.c:14405: warning: `qla2x00_remove_link' defined but not used
qla2x00.c:15002: warning: `qla2x00_print_q_info' defined but not used
qla2x00.c:535: warning: `debug_buff' defined but not used
qla_fo.cfg:24: warning: `MaxPathsPerDevice' defined but not used
qla_fo.cfg:25: warning: `MaxRetriesPerPath' defined but not used
qla_fo.cfg:26: warning: `MaxRetriesPerIo' defined but not used
make[3]: *** [qla2200.o] Error 1
make[3]: Leaving directory
`/data2/usr/local/src/linux-2.4-pre-aa/drivers/scsi/qla2xxx'
A misspelt 'vary_io'.
But also note that ISP2200 is defined on the command line as well
as in qla2200.c:24. While this is only a warning, it should
probably be cleaned.
2)
drivers/usb/brlvger.c does not compile, since -pre5, on older gcc.
3)
net/bluetooth/bnep/core.c line 461 refers to 'current->nice' which
does not exist. Should be some priority field?
4)
depmod: *** Unresolved symbols in
/lib/modules/2.4.20-pre10-aa1/kernel/fs/xfs/xfs.o
depmod: do_generic_file_write
with:
CONFIG_XFS_FS=m
# CONFIG_XFS_RT is not set
# CONFIG_XFS_QUOTA is not set
# CONFIG_XFS_DMAPI is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_PAGEBUF_DEBUG is not set
--
Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.org/eyal/>
[-- Attachment #2: 2.4.20-pre10-aa1-qla2x00.patch --]
[-- Type: text/plain, Size: 323 bytes --]
--- linux/drivers/scsi/qla2xxx/qla2x00.h.orig Fri Oct 11 11:59:01 2002
+++ linux/drivers/scsi/qla2xxx/qla2x00.h Fri Oct 11 11:59:13 2002
@@ -2731,7 +2731,7 @@
TEMPLATE_USE_NEW_EH_CODE \
TEMPLATE_MAX_SECTORS \
highmem_io: 1, \
- varyio: 1, \
+ vary_io: 1, \
emulated: 0 \
}
[-- Attachment #3: 2.4.20-pre10-aa1-brlvger.patch --]
[-- Type: text/plain, Size: 479 bytes --]
--- linux/drivers/usb/brlvger.c.orig Thu Aug 29 10:30:50 2002
+++ linux/drivers/usb/brlvger.c Thu Aug 29 10:31:02 2002
@@ -209,7 +209,7 @@
({ printk(KERN_ERR "Voyager: " args); \
printk("\n"); })
#define dbgprint(fmt, args...) \
- ({ printk(KERN_DEBUG "Voyager: %s: " fmt, __FUNCTION__, ##args); \
+ ({ printk(KERN_DEBUG "Voyager: %s: " fmt, __FUNCTION__ , ##args); \
printk("\n"); })
#define dbg(args...) \
({ if(debug >= 1) dbgprint(args); })
next prev parent reply other threads:[~2002-10-11 2:45 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-10 23:09 2.4.20pre10aa1 Andrea Arcangeli
2002-10-11 2:51 ` Eyal Lebedinsky [this message]
[not found] ` <20021011222830.GA1645@werewolf.able.es>
[not found] ` <20021011224237.GQ24468@dualathlon.random>
[not found] ` <20021011225228.GE1645@werewolf.able.es>
[not found] ` <20021011232539.GR24468@dualathlon.random>
2002-10-12 0:36 ` 2.4.20pre10aa1 J.A. Magallon
2002-10-12 0:43 ` 2.4.20pre10aa1 J.A. Magallon
[not found] ` <20021012004827.GA34193@compsoc.man.ac.uk>
2002-10-12 1:04 ` 2.4.20pre10aa1 J.A. Magallon
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=3DA63C98.3C494DFF@eyal.emu.id.au \
--to=eyal@eyal.emu.id.au \
--cc=andrea@suse.de \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®