From owner-cvs-src@FreeBSD.ORG Fri Apr 21 04:28:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 4A0A816A401; Fri, 21 Apr 2006 04:28:44 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1745743D48; Fri, 21 Apr 2006 04:28:44 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k3L4ShYX046598; Fri, 21 Apr 2006 04:28:43 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k3L4ShmP046597; Fri, 21 Apr 2006 04:28:43 GMT (envelope-from peter) Message-Id: <200604210428.k3L4ShmP046597@repoman.freebsd.org> From: Peter Wemm Date: Fri, 21 Apr 2006 04:28:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files.i386 src/sys/i386/i386 dump_machdep.c minidump_machdep.c src/sys/i386/include md_var.h minidump.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 21 Apr 2006 04:28:44 -0000 peter 2006-04-21 04:28:43 UTC FreeBSD src repository Modified files: sys/conf files.i386 sys/i386/i386 dump_machdep.c sys/i386/include md_var.h Added files: sys/i386/i386 minidump_machdep.c sys/i386/include minidump.h Log: Merge minidumps from amd64 where they were originally developed. Major differences: * since there is no direct map region, there is no custom uma memory allocator to modify to include its pages in the dumps. * Various data entries are reduced from 64 bit to 32 bit to match the native size. dump_add_page() and dump_drop_page() are still present in case one wants to arrange for arbitary pages to be dumped. This is of marginal use though because libkvm+kgdb cannot address physical memory that isn't mapped into kvm. Revision Changes Path 1.554 +1 -0 src/sys/conf/files.i386 1.12 +10 -0 src/sys/i386/i386/dump_machdep.c 1.1 +405 -0 src/sys/i386/i386/minidump_machdep.c (new) 1.74 +6 -0 src/sys/i386/include/md_var.h 1.1 +45 -0 src/sys/i386/include/minidump.h (new)