This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Fri Apr 19 08:58:00 2024 Received: from spaans.ds9a.nl (adsl-xs4all.ds9a.nl [213.84.159.51]) by kylie.puddingonline.com (8.11.6/8.11.6) with SMTP id g8IKPJX13785 for ; Wed, 18 Sep 2002 22:25:20 +0200 Received: (qmail 28619 invoked from network); 18 Sep 2002 07:54:27 -0000 Received: from unknown (HELO spaans.ds9a.nl) (3ffe:8280:10:360:202:44ff:fe2a:a1dd) by mayo.ipv6.ds9a.nl with SMTP; 18 Sep 2002 07:54:27 -0000 Received: (qmail 12110 invoked by uid 1000); 17 Sep 2002 21:25:33 -0000 Received: (maildatabase); juh Received: (qmail 1610 invoked by alias); 4 Apr 2002 18:22:48 -0000 Received: (qmail 1594 invoked from network); 4 Apr 2002 18:22:48 -0000 Received: from unknown (HELO dipsaus.ds9a.tudelft.nl) (::ffff:10.0.0.202) by spaans.ds9a.nl with SMTP; 4 Apr 2002 18:22:48 -0000 Received: (qmail 13688 invoked from network); 4 Apr 2002 18:22:46 -0000 Received: from unknown (HELO vger.kernel.org) (::ffff:209.116.70.75) by adsl-xs4all.ds9a.nl with SMTP; 4 Apr 2002 18:22:46 -0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 4 Apr 2002 13:19:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 4 Apr 2002 13:19:42 -0500 Received: from cobae1.consultronics.on.ca ([205.210.130.26]:59783 "EHLO cobae1.consultronics.on.ca") by vger.kernel.org with ESMTP id convert rfc822-to-8bit; Thu, 4 Apr 2002 13:19:39 -0500 Received: from athame.dynamicro.internal(localhost[127.0.0.1]) (2283 bytes) by cobae1.consultronics.on.ca via sendmail with P:esmtp/R:bind_hosts/T:inet_zone_bind_smtp (sender: ) id for ) id for linux-kernel@vger.kernel.org; Thu, 4 Apr 2002 13:19:26 -0500 (EST) (Smail-3.2.0 Date: Thu, 4 Apr 2002 13:19:26 -0500 From: Greg Louis To: LKML Cc: Alan Cox Subject: mini [PATCH] 2.4.19-pre5-ac1 compile error Message-Id: <20020404181925.GA25301@athame.dynamicro.on.ca> Reply-To: Greg Louis Mail-Followup-To: LKML , Alan Cox Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7BIT Organization: Dynamicro Consulting Limited Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org X-Spam-Status: No, hits=-5.0 required=6.0 tests=UNIFIED_PATCH version=2.11 Lines: 39 I needed this patch to prevent this: gcc -D__KERNEL__ -I/usr/src/expt/linux-2.4.19p5a1/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=i686 -DKBUILD_BASENAME=do_mounts -c -o init/do_mounts.o init/do_mounts.c init/do_mounts.c: In function andle_initrd': init/do_mounts.c:670: CHED_YIELD' undeclared (first use in this function) init/do_mounts.c:670: (Each undeclared identifier is reported only once init/do_mounts.c:670: for each function it appears in.) init/do_mounts.c: At top level: init/do_mounts.c:324: warning: ount_nfs_root' defined but not used make: *** [init/do_mounts.o] Error 1 --- linux-2.4.19pre5/init/do_mounts.c.orig 2002-04-04 13:05:05.000000000 -0500 +++ linux-2.4.19pre5/init/do_mounts.c 2002-04-04 13:05:05.000000000 -0500 @@ -667,8 +667,7 @@ pid = kernel_thread(do_linuxrc, "/linuxrc", SIGCHLD); if (pid > 0) { while (pid != wait(&i)) { - current->policy |= SCHED_YIELD; - schedule(); + yield(); } } -- | G r e g L o u i s | gpg public key: | | http://www.bgl.nu/~glouis | finger greg@bgl.nu | - 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/