From owner-cvs-src@FreeBSD.ORG Sat May 20 14:27:56 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 E5B2A16A52A; Sat, 20 May 2006 14:27:56 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13CA643D45; Sat, 20 May 2006 14:27:56 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k4KERMPD057616; Sat, 20 May 2006 14:27:22 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k4KERMD2057615; Sat, 20 May 2006 14:27:22 GMT (envelope-from netchild) Message-Id: <200605201427.k4KERMD2057615@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 20 May 2006 14:27:22 +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/usr.bin/kdump Makefile kdump.c kdump_subr.h mksubr 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: Sat, 20 May 2006 14:27:57 -0000 netchild 2006-05-20 14:27:22 UTC FreeBSD src repository Modified files: usr.bin/kdump Makefile kdump.c Added files: usr.bin/kdump kdump_subr.h mksubr Log: Change kdump to print more useful information, i.e. it changes from 32229 telnet CALL mmap(0,0x8000,0x3,0x1002,0xffffffff,0,0,0) 32229 telnet CALL open(0x2807bc28,0,0x1b6) 32229 telnet CALL socket(0x2,0x2,0) to 32229 telnet CALL mmap(0,0x8000,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,0xffffffff,0,0,0) 32229 telnet CALL open(0x2807bc28,O_RDONLY,0x1b6) 32229 telnet CALL socket(PF_INET,SOCK_DGRAM,0) David wanted to implement the suggestions which came up at the review from arch@ too, but real life rejected this proposal. So I commit what we already got and let another volunteer pick the remaining work from the ideas list. Submitted by: "David Kirchner" Suggested by: FreeBSD ideas list page Reviewed by: arch Revision Changes Path 1.12 +6 -3 src/usr.bin/kdump/Makefile 1.29 +388 -13 src/usr.bin/kdump/kdump.c 1.1 +46 -0 src/usr.bin/kdump/kdump_subr.h (new) 1.1 +407 -0 src/usr.bin/kdump/mksubr (new)