public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: fix bnx2i build errors
@ 2010-05-04 17:30 Randy Dunlap
  2010-05-05 13:54 ` James Bottomley
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2010-05-04 17:30 UTC (permalink / raw)
  To: scsi; +Cc: jejbscsi, Anil Veerabhadrappa, akpm

From: Randy Dunlap <randy.dunlap@oracle.com>

bnx2i should depend on NET since it selects SCSI_ISCSI_ATTRS,
which depends on NET.

Also move the dependencies together.

The "depends" change fixes multiple build errors when CONFIG_NET is
not enabled:
ERROR: "skb_trim" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "netlink_kernel_create" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "netlink_kernel_release" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "skb_pull" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "init_net" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "__alloc_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "netlink_broadcast" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "kfree_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
ERROR: "skb_put" [drivers/scsi/scsi_transport_iscsi.ko] undefined!

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Anil Veerabhadrappa <anilgv@broadcom.com>
---
 drivers/scsi/bnx2i/Kconfig |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- lnx-2634-rc6.orig/drivers/scsi/bnx2i/Kconfig
+++ lnx-2634-rc6/drivers/scsi/bnx2i/Kconfig
@@ -1,10 +1,11 @@
 config SCSI_BNX2_ISCSI
 	tristate "Broadcom NetXtreme II iSCSI support"
+	depends on NET
+	depends on PCI
 	select SCSI_ISCSI_ATTRS
 	select NETDEVICES
 	select NETDEV_1000
 	select CNIC
-	depends on PCI
 	---help---
 	This driver supports iSCSI offload for the Broadcom NetXtreme II
 	devices.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] scsi: fix bnx2i build errors
  2010-05-04 17:30 [PATCH] scsi: fix bnx2i build errors Randy Dunlap
@ 2010-05-05 13:54 ` James Bottomley
  2010-05-05 15:48   ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: James Bottomley @ 2010-05-05 13:54 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: scsi, Anil Veerabhadrappa, akpm

On Tue, 2010-05-04 at 10:30 -0700, Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
> 
> bnx2i should depend on NET since it selects SCSI_ISCSI_ATTRS,
> which depends on NET.
> 
> Also move the dependencies together.
> 
> The "depends" change fixes multiple build errors when CONFIG_NET is
> not enabled:
> ERROR: "skb_trim" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "netlink_kernel_create" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "netlink_kernel_release" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "skb_pull" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "init_net" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "__alloc_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "netlink_broadcast" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "kfree_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> ERROR: "skb_put" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> Cc: Anil Veerabhadrappa <anilgv@broadcom.com>
> ---
>  drivers/scsi/bnx2i/Kconfig |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> --- lnx-2634-rc6.orig/drivers/scsi/bnx2i/Kconfig
> +++ lnx-2634-rc6/drivers/scsi/bnx2i/Kconfig
> @@ -1,10 +1,11 @@
>  config SCSI_BNX2_ISCSI
>  	tristate "Broadcom NetXtreme II iSCSI support"
> +	depends on NET
> +	depends on PCI

Actually, let's not fix it this way.  While we still have this annoying
bug in the Kconfig system where it doesn't respect the dependencies of a
select, let's not build traps like this ... the rule has to be selected
attributes must select their dependencies, that way the selection just
works(tm).

Of course, fixing Kconfig would be the better option ...

James

---

diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
index 75f2336..804ba3d 100644
--- a/drivers/scsi/Kconfig
+++ b/drivers/scsi/Kconfig
@@ -308,7 +308,8 @@ config SCSI_FC_TGT_ATTRS
 
 config SCSI_ISCSI_ATTRS
 	tristate "iSCSI Transport Attributes"
-	depends on SCSI && NET
+	depends on SCSI
+	select NET
 	help
 	  If you wish to export transport-specific information about
 	  each attached iSCSI device to sysfs, say Y.



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] scsi: fix bnx2i build errors
  2010-05-05 13:54 ` James Bottomley
@ 2010-05-05 15:48   ` Randy Dunlap
  2010-05-05 16:02     ` James Bottomley
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2010-05-05 15:48 UTC (permalink / raw)
  To: James Bottomley; +Cc: scsi, Anil Veerabhadrappa, akpm

On 05/05/10 06:54, James Bottomley wrote:
> On Tue, 2010-05-04 at 10:30 -0700, Randy Dunlap wrote:
>> From: Randy Dunlap <randy.dunlap@oracle.com>
>>
>> bnx2i should depend on NET since it selects SCSI_ISCSI_ATTRS,
>> which depends on NET.
>>
>> Also move the dependencies together.
>>
>> The "depends" change fixes multiple build errors when CONFIG_NET is
>> not enabled:
>> ERROR: "skb_trim" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "netlink_kernel_create" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "netlink_kernel_release" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "skb_pull" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "init_net" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "__alloc_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "netlink_broadcast" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "kfree_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>> ERROR: "skb_put" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>
>> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
>> Cc: Anil Veerabhadrappa <anilgv@broadcom.com>
>> ---
>>  drivers/scsi/bnx2i/Kconfig |    3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> --- lnx-2634-rc6.orig/drivers/scsi/bnx2i/Kconfig
>> +++ lnx-2634-rc6/drivers/scsi/bnx2i/Kconfig
>> @@ -1,10 +1,11 @@
>>  config SCSI_BNX2_ISCSI
>>  	tristate "Broadcom NetXtreme II iSCSI support"
>> +	depends on NET
>> +	depends on PCI
> 
> Actually, let's not fix it this way.  While we still have this annoying
> bug in the Kconfig system where it doesn't respect the dependencies of a
> select, let's not build traps like this ... the rule has to be selected
> attributes must select their dependencies, that way the selection just
> works(tm).
> 
> Of course, fixing Kconfig would be the better option ...
> 
> James
> 
> ---
> 
> diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
> index 75f2336..804ba3d 100644
> --- a/drivers/scsi/Kconfig
> +++ b/drivers/scsi/Kconfig
> @@ -308,7 +308,8 @@ config SCSI_FC_TGT_ATTRS
>  
>  config SCSI_ISCSI_ATTRS
>  	tristate "iSCSI Transport Attributes"
> -	depends on SCSI && NET
> +	depends on SCSI
> +	select NET
>  	help
>  	  If you wish to export transport-specific information about
>  	  each attached iSCSI device to sysfs, say Y.
> 
> 

I would Nak that but it would probably do no good.
Selecting NET just adds way too much code to be hidden like this.

Yes, of course, kconfig should be fixed...

-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] scsi: fix bnx2i build errors
  2010-05-05 15:48   ` Randy Dunlap
@ 2010-05-05 16:02     ` James Bottomley
  2010-05-05 16:11       ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: James Bottomley @ 2010-05-05 16:02 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: scsi, Anil Veerabhadrappa, akpm

On Wed, 2010-05-05 at 08:48 -0700, Randy Dunlap wrote:
> On 05/05/10 06:54, James Bottomley wrote:
> > On Tue, 2010-05-04 at 10:30 -0700, Randy Dunlap wrote:
> >> From: Randy Dunlap <randy.dunlap@oracle.com>
> >>
> >> bnx2i should depend on NET since it selects SCSI_ISCSI_ATTRS,
> >> which depends on NET.
> >>
> >> Also move the dependencies together.
> >>
> >> The "depends" change fixes multiple build errors when CONFIG_NET is
> >> not enabled:
> >> ERROR: "skb_trim" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "netlink_kernel_create" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "netlink_kernel_release" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "skb_pull" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "init_net" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "__alloc_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "netlink_broadcast" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "kfree_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >> ERROR: "skb_put" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
> >>
> >> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> >> Cc: Anil Veerabhadrappa <anilgv@broadcom.com>
> >> ---
> >>  drivers/scsi/bnx2i/Kconfig |    3 ++-
> >>  1 file changed, 2 insertions(+), 1 deletion(-)
> >>
> >> --- lnx-2634-rc6.orig/drivers/scsi/bnx2i/Kconfig
> >> +++ lnx-2634-rc6/drivers/scsi/bnx2i/Kconfig
> >> @@ -1,10 +1,11 @@
> >>  config SCSI_BNX2_ISCSI
> >>  	tristate "Broadcom NetXtreme II iSCSI support"
> >> +	depends on NET
> >> +	depends on PCI
> > 
> > Actually, let's not fix it this way.  While we still have this annoying
> > bug in the Kconfig system where it doesn't respect the dependencies of a
> > select, let's not build traps like this ... the rule has to be selected
> > attributes must select their dependencies, that way the selection just
> > works(tm).
> > 
> > Of course, fixing Kconfig would be the better option ...
> > 
> > James
> > 
> > ---
> > 
> > diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
> > index 75f2336..804ba3d 100644
> > --- a/drivers/scsi/Kconfig
> > +++ b/drivers/scsi/Kconfig
> > @@ -308,7 +308,8 @@ config SCSI_FC_TGT_ATTRS
> >  
> >  config SCSI_ISCSI_ATTRS
> >  	tristate "iSCSI Transport Attributes"
> > -	depends on SCSI && NET
> > +	depends on SCSI
> > +	select NET
> >  	help
> >  	  If you wish to export transport-specific information about
> >  	  each attached iSCSI device to sysfs, say Y.
> > 
> > 
> 
> I would Nak that but it would probably do no good.
> Selecting NET just adds way too much code to be hidden like this.

I think it's a complete hack too.  But it's better than forcing people
who use select on hidden options (like the transport classes) to be
aware of the nebulous dependency diagram it's going to pull in.  It's
also what we've done to prevent hidden dependencies in other select
items.

> Yes, of course, kconfig should be fixed...

In the absence of volunteers, I suppose I could take a look at it on the
'plane home.  It seems to be a fairly simplistic parser.

James



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] scsi: fix bnx2i build errors
  2010-05-05 16:02     ` James Bottomley
@ 2010-05-05 16:11       ` Randy Dunlap
  0 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2010-05-05 16:11 UTC (permalink / raw)
  To: James Bottomley; +Cc: scsi, Anil Veerabhadrappa, akpm

On 05/05/10 09:02, James Bottomley wrote:
> On Wed, 2010-05-05 at 08:48 -0700, Randy Dunlap wrote:
>> On 05/05/10 06:54, James Bottomley wrote:
>>> On Tue, 2010-05-04 at 10:30 -0700, Randy Dunlap wrote:
>>>> From: Randy Dunlap <randy.dunlap@oracle.com>
>>>>
>>>> bnx2i should depend on NET since it selects SCSI_ISCSI_ATTRS,
>>>> which depends on NET.
>>>>
>>>> Also move the dependencies together.
>>>>
>>>> The "depends" change fixes multiple build errors when CONFIG_NET is
>>>> not enabled:
>>>> ERROR: "skb_trim" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "netlink_kernel_create" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "netlink_kernel_release" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "skb_pull" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "init_net" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "__alloc_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "netlink_broadcast" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "kfree_skb" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>> ERROR: "skb_put" [drivers/scsi/scsi_transport_iscsi.ko] undefined!
>>>>
>>>> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
>>>> Cc: Anil Veerabhadrappa <anilgv@broadcom.com>
>>>> ---
>>>>  drivers/scsi/bnx2i/Kconfig |    3 ++-
>>>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>>>
>>>> --- lnx-2634-rc6.orig/drivers/scsi/bnx2i/Kconfig
>>>> +++ lnx-2634-rc6/drivers/scsi/bnx2i/Kconfig
>>>> @@ -1,10 +1,11 @@
>>>>  config SCSI_BNX2_ISCSI
>>>>  	tristate "Broadcom NetXtreme II iSCSI support"
>>>> +	depends on NET
>>>> +	depends on PCI
>>>
>>> Actually, let's not fix it this way.  While we still have this annoying
>>> bug in the Kconfig system where it doesn't respect the dependencies of a
>>> select, let's not build traps like this ... the rule has to be selected
>>> attributes must select their dependencies, that way the selection just
>>> works(tm).
>>>
>>> Of course, fixing Kconfig would be the better option ...
>>>
>>> James
>>>
>>> ---
>>>
>>> diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
>>> index 75f2336..804ba3d 100644
>>> --- a/drivers/scsi/Kconfig
>>> +++ b/drivers/scsi/Kconfig
>>> @@ -308,7 +308,8 @@ config SCSI_FC_TGT_ATTRS
>>>  
>>>  config SCSI_ISCSI_ATTRS
>>>  	tristate "iSCSI Transport Attributes"
>>> -	depends on SCSI && NET
>>> +	depends on SCSI
>>> +	select NET
>>>  	help
>>>  	  If you wish to export transport-specific information about
>>>  	  each attached iSCSI device to sysfs, say Y.
>>>
>>>
>>
>> I would Nak that but it would probably do no good.
>> Selecting NET just adds way too much code to be hidden like this.
> 
> I think it's a complete hack too.  But it's better than forcing people
> who use select on hidden options (like the transport classes) to be
> aware of the nebulous dependency diagram it's going to pull in.  It's
> also what we've done to prevent hidden dependencies in other select
> items.

The only other config symbol that selects NET is SCSI_NETLINK.  :(

>> Yes, of course, kconfig should be fixed...
> 
> In the absence of volunteers, I suppose I could take a look at it on the
> 'plane home.  It seems to be a fairly simplistic parser.

That would be great.  I've had a look at it and I was left dazed & confuzed.


-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-05-05 16:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-04 17:30 [PATCH] scsi: fix bnx2i build errors Randy Dunlap
2010-05-05 13:54 ` James Bottomley
2010-05-05 15:48   ` Randy Dunlap
2010-05-05 16:02     ` James Bottomley
2010-05-05 16:11       ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox