From owner-cvs-src@FreeBSD.ORG Wed Oct 8 00:37:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A68E516A4B3; Wed, 8 Oct 2003 00:37:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B56C43FEC; Wed, 8 Oct 2003 00:37:12 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h987bBXJ028839; Wed, 8 Oct 2003 00:37:11 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h987bBYS028838; Wed, 8 Oct 2003 00:37:11 -0700 (PDT) (envelope-from marcel) Message-Id: <200310080737.h987bBYS028838@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 8 Oct 2003 00:37:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/savecore savecore.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2003 07:37:12 -0000 marcel 2003/10/08 00:37:11 PDT FreeBSD src repository Modified files: sbin/savecore savecore.c Log: Revision 1.61 changed the allocation of buffer 'buf' in DoFile() from the stack to the heap to work around a problem on ia64. Now, roughly 16 months and two compiler updates later, it isn't an issue anymore in the sense that putting a 1M buffer on the stack just works and we don't actually need to work around anything anymore. However, since there's no advantage or need to put the buffer on the stack (again), this change merely removes the XXX comment describing that there's an explicit reason for the heap allocation. Hence, this change is a functional no-op. PR: ia64/38677 Revision Changes Path 1.65 +0 -6 src/sbin/savecore/savecore.c