netdev
[Top] [All Lists]

[2.6 patch] atalk compile errors with SYSCTL=n

To: acme@xxxxxxxxxxxxxxxx
Subject: [2.6 patch] atalk compile errors with SYSCTL=n
From: Adrian Bunk <bunk@xxxxxxxxx>
Date: Thu, 12 Aug 2004 00:47:47 +0200
Cc: linux-kernel@xxxxxxxxxxxxxxx, davem@xxxxxxxxxx, netdev@xxxxxxxxxxx
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mutt/1.5.6i
I'm getting the following compile error in 2.6.8-rc4-mm1 (but it 
doesn't seem to be specific to -mm) with CONFIG_SYSCTL=n:

<--  snip  -->

...
  LD      .tmp_vmlinux1
net/built-in.o(.init.text+0x74db): In function `atalk_init':
: undefined reference to `atalk_register_sysctl'
make: *** [.tmp_vmlinux1] Error 1

<--  snip  -->


The following patch fixes this issue:


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- linux-2.6.8-rc4-mm1-full/net/appletalk/ddp.c.old    2004-08-12 
00:44:33.000000000 +0200
+++ linux-2.6.8-rc4-mm1-full/net/appletalk/ddp.c        2004-08-12 
00:45:08.000000000 +0200
@@ -68,8 +68,10 @@
                                     struct atalk_addr *sa);
 extern void aarp_proxy_remove(struct net_device *dev, struct atalk_addr *sa);
 
+#ifdef CONFIG_SYSCTL
 extern void atalk_register_sysctl(void);
 extern void atalk_unregister_sysctl(void);
+#endif
 
 struct datalink_proto *ddp_dl, *aarp_dl;
 static struct proto_ops atalk_dgram_ops;
@@ -1905,7 +1907,9 @@
        register_netdevice_notifier(&ddp_notifier);
        aarp_proto_init();
        atalk_proc_init();
+#ifdef CONFIG_SYSCTL
        atalk_register_sysctl();
+#endif
        return 0;
 }
 module_init(atalk_init);


<Prev in Thread] Current Thread [Next in Thread>