Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sun, 24 Nov 2002 21:30:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sun, 24 Nov 2002 21:30:52 -0500 Received: from TYO202.gate.nec.co.jp ([210.143.35.52]:46228 "EHLO TYO202.gate.nec.co.jp") by vger.kernel.org with ESMTP id ; Sun, 24 Nov 2002 21:30:51 -0500 To: linux-kernel@vger.kernel.org Subject: 2.5.49: compile with CONFIG_NET=n still broken References: Reply-To: Miles Bader System-Type: i686-pc-linux-gnu Blat: Foop From: Miles Bader Date: 25 Nov 2002 11:34:51 +0900 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2251 Lines: 46 [I haven't tried to compile without CONFIG_NET for a while, so I suppose this probably crept in earlier.] With CONFIG_NET=n, I get two link errors: v850e-elf-ld -T arch/v850/vmlinux.lds.s arch/v850/kernel/head.o arch/v850/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/v850/kernel/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o lib/lib.a arch/v850/lib/lib.a drivers/built-in.o sound/built-in.o net/built-in.o --end-group -o vmlinux /proj/soft2/uclinux/uclinux/build/2.5.49-uc0-sim/net/socket.c:747: undefined reference to `dev_ioctl' /proj/soft2/uclinux/uclinux/build/2.5.49-uc0-sim/include/net/xfrm.h:303: undefined reference to `__secpath_destroy' make: *** [vmlinux] Error 1 (1) The `dev_ioctl' error is because of the added call in sock_ioctl (net/socket.c) to dev_ioctl #ifdefed on WIRELESS_EXT, which is defined in . Since net/socket.c actually includes twice, once #ifdefed, and once not, I just got rid of the non-#ifdefed include, which seems to solve the problem: diff -up ../orig/linux-2.5.49-uc0/net/socket.c net/socket.c --- ../orig/linux-2.5.49-uc0/net/socket.c 2002-11-25 10:30:11.000000000 +0900 +++ net/socket.c 2002-11-25 10:39:07.000000000 +0900 @@ -75,7 +75,6 @@ #include #include #include -#include #include #include (2) `__secpath_destroy' is used by the inline function `secpath_put', in , and net/core/skbuff.c calls secpath_put -- but __secpath_destroy is defined in net/ipv4/xfrm_input.c, and the net/ipv4 directory isn't even compiled if CONFIG_NET=n. [I didn't know what to do about this, so I just commented out the call to __secpath_destroy in secpath_put] Thanks, -Miles -- Next to fried food, the South has suffered most from oratory. -- Walter Hines Page - 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/