From owner-freebsd-current@FreeBSD.ORG Thu Jun 12 09:07:00 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CEE37B401; Thu, 12 Jun 2003 09:07:00 -0700 (PDT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE11043FAF; Thu, 12 Jun 2003 09:06:59 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id h5CG6vjp084753 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 12 Jun 2003 12:06:58 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id h5CG6vo7084750; Thu, 12 Jun 2003 12:06:57 -0400 (EDT) (envelope-from wollman) Date: Thu, 12 Jun 2003 12:06:57 -0400 (EDT) From: Garrett Wollman Message-Id: <200306121606.h5CG6vo7084750@khavrinen.lcs.mit.edu> To: Tim Robbins In-Reply-To: <20030612222207.A68920@dilbert.robbins.dropbear.id.au> References: <20030612182944.A62729@dilbert.robbins.dropbear.id.au> <20030612222207.A68920@dilbert.robbins.dropbear.id.au> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.33 (www . roaringpenguin . com / mimedefang) cc: current@freebsd.org Subject: Re: Apparent i386 alloca.S bug (was: adsl/pppoe no longer connecting on 5.1) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 16:07:00 -0000 < said: > builtin alloca() until we figure out how to fix the one in libc. It is fundamentally impossible to ``fix'' the alloca() implementation in libc. alloca() CANNOT be implemented that way. If GCC's builtin alloca() is disabled by requesting a strict Standard C environment (which is not appropriate for FreeBSD anyway), then alloca() is just an ordinary user symbol and programs expecting the implementation to supply it should simply fail. -GAWollman