netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: linux-next: Tree for June 11 (cnic)
       [not found] <20090611191420.1f4d5e4f.sfr@canb.auug.org.au>
@ 2009-06-11 22:21 ` Randy Dunlap
  2009-06-18 10:16   ` Kamalesh Babulal
       [not found] ` <4A31869B.3050901@oracle.com>
  1 sibling, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2009-06-11 22:21 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, LKML, Netdev

Stephen Rothwell wrote:
> Hi all,
> 
> Changes since 20090610:


In 2 separate builds:

ERROR: "ip_route_output_key" [drivers/net/cnic.ko] undefined!

when CONFIG_INET=n

and

drivers/net/cnic.c:2520: error: implicit declaration of function '__symbol_get'

when CONFIG_MODULES=n


-- 
~Randy
LPC 2009, Sept. 23-25, Portland, Oregon
http://linuxplumbersconf.org/2009/

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

* [PATCH -next] ieee802154: fix kconfig bool/tristate muckup
       [not found] ` <4A31869B.3050901@oracle.com>
@ 2009-06-12 22:59   ` Randy Dunlap
  2009-06-13 10:57     ` Sergey Lapin
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2009-06-12 22:59 UTC (permalink / raw)
  To: David Miller
  Cc: Stephen Rothwell, linux-next, LKML, dbaryshkov, slapin,
	linux-zigbee-devel, Netdev, Andrew Morton

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

menuconfig IEEE802154_DRIVERS is a bool that depends on tristate IEEE802154.
If the IEEE802154 symbol is 'm', the bool becomes 'y'.
This allows tristate symbols under IEEE802154_DRIVERS to be configured as
'y' and cause build problems.
Changing the menuconfig bool to a tristate fixes this.

drivers/built-in.o: In function `fake_scan_req':
fakehard.c:(.text+0x46d625): undefined reference to `ieee802154_nl_scan_confirm'
drivers/built-in.o: In function `fake_disassoc_req':
fakehard.c:(.text+0x46d66f): undefined reference to `ieee802154_nl_disassoc_confirm'
drivers/built-in.o: In function `fake_assoc_req':
fakehard.c:(.text+0x46d6be): undefined reference to `ieee802154_nl_assoc_confirm'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: linux-zigbee-devel@lists.sourceforge.net
Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Cc: Sergey Lapin <slapin@ossfans.org>
---
 drivers/ieee802154/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20090612.orig/drivers/ieee802154/Kconfig
+++ linux-next-20090612/drivers/ieee802154/Kconfig
@@ -1,5 +1,5 @@
 menuconfig IEEE802154_DRIVERS
-	bool "IEEE 802.15.4 drivers"
+	tristate "IEEE 802.15.4 drivers"
 	depends on NETDEVICES && IEEE802154
 	default y
 	---help---


-- 
~Randy
LPC 2009, Sept. 23-25, Portland, Oregon
http://linuxplumbersconf.org/2009/

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

* Re: [PATCH -next] ieee802154: fix kconfig bool/tristate muckup
  2009-06-12 22:59   ` [PATCH -next] ieee802154: fix kconfig bool/tristate muckup Randy Dunlap
@ 2009-06-13 10:57     ` Sergey Lapin
  2009-06-14  6:37       ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Sergey Lapin @ 2009-06-13 10:57 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: David Miller, Stephen Rothwell, linux-next, LKML, dbaryshkov,
	linux-zigbee-devel, Netdev, Andrew Morton

On Fri, Jun 12, 2009 at 03:59:20PM -0700, Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
> 
> menuconfig IEEE802154_DRIVERS is a bool that depends on tristate IEEE802154.
> If the IEEE802154 symbol is 'm', the bool becomes 'y'.
> This allows tristate symbols under IEEE802154_DRIVERS to be configured as
> 'y' and cause build problems.
> Changing the menuconfig bool to a tristate fixes this.
> 
> drivers/built-in.o: In function `fake_scan_req':
> fakehard.c:(.text+0x46d625): undefined reference to `ieee802154_nl_scan_confirm'
> drivers/built-in.o: In function `fake_disassoc_req':
> fakehard.c:(.text+0x46d66f): undefined reference to `ieee802154_nl_disassoc_confirm'
> drivers/built-in.o: In function `fake_assoc_req':
> fakehard.c:(.text+0x46d6be): undefined reference to `ieee802154_nl_assoc_confirm'
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> Cc: linux-zigbee-devel@lists.sourceforge.net
> Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
> Cc: Sergey Lapin <slapin@ossfans.org>
Ackedy-by: Sergey Lapin <slapin@ossfans.org>

Thanks a lot!
S.

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

* Re: [PATCH -next] ieee802154: fix kconfig bool/tristate muckup
  2009-06-13 10:57     ` Sergey Lapin
@ 2009-06-14  6:37       ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2009-06-14  6:37 UTC (permalink / raw)
  To: slapin
  Cc: randy.dunlap, sfr, linux-next, linux-kernel, dbaryshkov,
	linux-zigbee-devel, netdev, akpm

From: Sergey Lapin <slapin@ossfans.org>
Date: Sat, 13 Jun 2009 14:57:54 +0400

> On Fri, Jun 12, 2009 at 03:59:20PM -0700, Randy Dunlap wrote:
>> From: Randy Dunlap <randy.dunlap@oracle.com>
>> 
>> menuconfig IEEE802154_DRIVERS is a bool that depends on tristate IEEE802154.
>> If the IEEE802154 symbol is 'm', the bool becomes 'y'.
>> This allows tristate symbols under IEEE802154_DRIVERS to be configured as
>> 'y' and cause build problems.
>> Changing the menuconfig bool to a tristate fixes this.
>> 
>> drivers/built-in.o: In function `fake_scan_req':
>> fakehard.c:(.text+0x46d625): undefined reference to `ieee802154_nl_scan_confirm'
>> drivers/built-in.o: In function `fake_disassoc_req':
>> fakehard.c:(.text+0x46d66f): undefined reference to `ieee802154_nl_disassoc_confirm'
>> drivers/built-in.o: In function `fake_assoc_req':
>> fakehard.c:(.text+0x46d6be): undefined reference to `ieee802154_nl_assoc_confirm'
>> 
>> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
>> Cc: linux-zigbee-devel@lists.sourceforge.net
>> Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
>> Cc: Sergey Lapin <slapin@ossfans.org>
> Ackedy-by: Sergey Lapin <slapin@ossfans.org>

It's "Acked-by:" :-)

Applied, thanks everyone.

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

* Re: linux-next: Tree for June 11 (cnic)
  2009-06-11 22:21 ` linux-next: Tree for June 11 (cnic) Randy Dunlap
@ 2009-06-18 10:16   ` Kamalesh Babulal
  0 siblings, 0 replies; 5+ messages in thread
From: Kamalesh Babulal @ 2009-06-18 10:16 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Randy Dunlap, linux-next, LKML, Netdev

* Randy Dunlap <randy.dunlap@oracle.com> [2009-06-11 15:21:12]:

> Stephen Rothwell wrote:
> > Hi all,
> > 
> > Changes since 20090610:
> 
> 
> In 2 separate builds:
> 
> ERROR: "ip_route_output_key" [drivers/net/cnic.ko] undefined!
> 
> when CONFIG_INET=n
> 
> and
> 
> drivers/net/cnic.c:2520: error: implicit declaration of function '__symbol_get'
> 
> when CONFIG_MODULES=n

this build failure is also visible with 20090618.
> 
> 
> -- 
> ~Randy
> LPC 2009, Sept. 23-25, Portland, Oregon
> http://linuxplumbersconf.org/2009/

-- 
Kamalesh

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

end of thread, other threads:[~2009-06-18 10:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20090611191420.1f4d5e4f.sfr@canb.auug.org.au>
2009-06-11 22:21 ` linux-next: Tree for June 11 (cnic) Randy Dunlap
2009-06-18 10:16   ` Kamalesh Babulal
     [not found] ` <4A31869B.3050901@oracle.com>
2009-06-12 22:59   ` [PATCH -next] ieee802154: fix kconfig bool/tristate muckup Randy Dunlap
2009-06-13 10:57     ` Sergey Lapin
2009-06-14  6:37       ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).