Re: 2.3.39 LLC on Alpha broken?

Arnaldo Carvalho de Melo (acme@conectiva.com.br)
Mon, 30 Sep 2002 15:07:32 -0300


Em Mon, Sep 30, 2002 at 07:58:43PM +0200, Jochen Friedrich escreveu:
> Hi,
>
> > I'll try to reboot the remaining mess and report how far it gets...
>
> It looks like LLC is the culprit for me:

Yes, it is, this is fixed in Linus bk tree, snap_init has to be called after
llc_init, this is the patch:

diff -Nru a/net/Makefile b/net/Makefile
--- a/net/Makefile Wed Sep 18 22:54:43 2002
+++ b/net/Makefile Mon Sep 30 00:11:16 2002
@@ -9,6 +9,8 @@

obj-y := socket.o core/

+# LLC has to be linked before the files in net/802/
+obj-$(CONFIG_LLC) += llc/
obj-$(CONFIG_NET) += ethernet/ 802/ sched/ netlink/
obj-$(CONFIG_INET) += ipv4/
obj-$(CONFIG_UNIX) += unix/
@@ -31,7 +33,6 @@
obj-$(CONFIG_DECNET) += decnet/
obj-$(CONFIG_ECONET) += econet/
obj-$(CONFIG_VLAN_8021Q) += 8021q/
-obj-$(CONFIG_LLC) += llc/
obj-$(CONFIG_IP_SCTP) += sctp/

ifeq ($(CONFIG_NET),y)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/