mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* test13-pre6 compile error..network.o
@ 2000-12-30  8:03 Frank Davis
  2000-12-30 10:19 ` Andrew Morton
  2000-12-30 16:43 ` Alan Cox
  0 siblings, 2 replies; 3+ messages in thread
From: Frank Davis @ 2000-12-30  8:03 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds

[-- Attachment #1: Type: text/plain, Size: 372 bytes --]

Hello,
     I received the following error while compiling test13-pre6 . 

net/network.o: In function `lecd_attach':
net/network.o(.text+0x5ce78): undefined reference to `prepare_trdev'
net/network.o(.text+0x5ce88): undefined reference to `prepare_etherdev'
net/network.o(.text+0x5cee3): undefined reference to `publish_netdev'
make: *** [vmlinux] Error 1

Regards,
-Frank

[-- Attachment #2: Type: text/html, Size: 1097 bytes --]

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

* Re: test13-pre6 compile error..network.o
  2000-12-30  8:03 test13-pre6 compile error..network.o Frank Davis
@ 2000-12-30 10:19 ` Andrew Morton
  2000-12-30 16:43 ` Alan Cox
  1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2000-12-30 10:19 UTC (permalink / raw)
  To: Frank Davis; +Cc: linux-kernel, torvalds

> Hello,
>      I received the following error while compiling test13-pre6 . 
> 
> net/network.o: In function `lecd_attach':
> net/network.o(.text+0x5ce78): undefined reference to `prepare_trdev'
> net/network.o(.text+0x5ce88): undefined reference to `prepare_etherdev'
> net/network.o(.text+0x5cee3): undefined reference to `publish_netdev'
> make: *** [vmlinux] Error 1

This is caused by some cross-patch leakage between Alan and Linus.

This should fix it:

--- linux-2.4.0-test13-pre6/net/atm/lec.c	Sat Dec 30 18:38:55 2000
+++ linux-akpm/net/atm/lec.c	Sat Dec 30 21:17:11 2000
@@ -772,10 +772,10 @@
                 size = sizeof(struct lec_priv);
 #ifdef CONFIG_TR
                 if (is_trdev)
-                        dev_lec[i] = prepare_trdev(NULL, size);
+                        dev_lec[i] = init_trdev(NULL, size);
                 else
 #endif
-                dev_lec[i] = prepare_etherdev(NULL, size);
+                dev_lec[i] = init_etherdev(NULL, size);
                 if (!dev_lec[i])
                         return -ENOMEM;
 
@@ -783,7 +783,6 @@
                 priv->is_trdev = is_trdev;
                 sprintf(dev_lec[i]->name, "lec%d", i);
                 lec_init(dev_lec[i]);
-		publish_netdev(dev_lec[i]);
         } else {
                 priv = dev_lec[i]->priv;
                 if (priv->lecd)
@@ -858,7 +857,7 @@
         for (i = 0; i < MAX_LEC_ITF; i++) {
                 if (dev_lec[i] != NULL) {
                         priv = (struct lec_priv *)dev_lec[i]->priv;
-                        unregister_netdev(dev_lec[i]);
+                        unregister_trdev(dev_lec[i]);
                         kfree(dev_lec[i]);
                         dev_lec[i] = NULL;
                 }
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

* Re: test13-pre6 compile error..network.o
  2000-12-30  8:03 test13-pre6 compile error..network.o Frank Davis
  2000-12-30 10:19 ` Andrew Morton
@ 2000-12-30 16:43 ` Alan Cox
  1 sibling, 0 replies; 3+ messages in thread
From: Alan Cox @ 2000-12-30 16:43 UTC (permalink / raw)
  To: Frank Davis; +Cc: linux-kernel, torvalds

> net/network.o(.text+0x5ce78): undefined reference to `prepare_trdev'
> net/network.o(.text+0x5ce88): undefined reference to `prepare_etherdev'
> net/network.o(.text+0x5cee3): undefined reference to `publish_netdev'

My fault. I fed Linus a few things too many trying to get the networking
stuff tidied up. Stuff leaked in from the networking core fixes that arent
yet in Linus tree

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

end of thread, other threads:[~2000-12-30 17:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-12-30  8:03 test13-pre6 compile error..network.o Frank Davis
2000-12-30 10:19 ` Andrew Morton
2000-12-30 16:43 ` Alan Cox

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®