[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B7EC8AE.60200@oracle.com>
Date: Fri, 19 Feb 2010 09:21:50 -0800
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Stephen Rothwell <sfr@...b.auug.org.au>
CC: linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
scsi <linux-scsi@...r.kernel.org>,
"James E.J. Bottomley" <James.Bottomley@...e.de>
Subject: Re: linux-next: Tree for February 19 (scsi/mpt2sas/raid_class)
On 02/18/10 22:47, Stephen Rothwell wrote:
> Hi all,
>
> Changes since 20100218:
>
>
> The scsi tree lost its build failure.
(caused by a one-line patch to scsi/mpt2sas/Kconfig:
select RAID_ATTRS
)
When CONFIG_SCSI=m, CONFIG_RAID_ATTRS can still be =y, causing build errors
like:
ERROR: "raid_class_release" [drivers/scsi/mpt2sas/mpt2sas.ko] undefined!
ERROR: "raid_class_attach" [drivers/scsi/mpt2sas/mpt2sas.ko] undefined!
drivers/scsi/built-in.o does contain raid_class_* code (according to 'nm'),
but drivers/built-in.o does not, so I guess that drivers/Makefile:
obj-$(CONFIG_SCSI) += scsi/
is preventing drivers/scsi/built-in.o from being added to drivers/built-in.o.
We can:
a/ change drivers/Makefile to say:
obj-y += scsi/
(test: that still had a build error:
drivers/built-in.o: In function `raid_match':
raid_class.c:(.text+0x9de7c): undefined reference to `scsi_is_sdev_device'
)
b/ change drivers/scsi/Kconfig to make RAID_ATTRS depend on SCSI, so that raid_class
would be built as a module
That one does work.
Do something else?
Preferences?
--
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists