From owner-cvs-src@FreeBSD.ORG Mon May 26 18:15:17 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 02C2B37B401; Mon, 26 May 2003 18:15:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74FE843FBD; Mon, 26 May 2003 18:15:16 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R1FG0U034533; Mon, 26 May 2003 18:15:16 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R1FGBC034532; Mon, 26 May 2003 18:15:16 -0700 (PDT) Message-Id: <200305270115.h4R1FGBC034532@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 26 May 2003 18:15:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 unwind.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: Tue, 27 May 2003 01:15:17 -0000 marcel 2003/05/26 18:15:16 PDT FreeBSD src repository Modified files: sys/ia64/ia64 unwind.c Log: Have the unwinder allocate memory with M_NOWAIT. The unwinder is used by DDB and we cannot know in advance whether it's save to sleep. It often enough isn't. We may want to pre-allocate space to cover the most common cases without having to use malloc at all, but that requires some analysis. We leave that for later. Approved by: re@ (blanket) Revision Changes Path 1.7 +1 -1 src/sys/ia64/ia64/unwind.c