From owner-cvs-src@FreeBSD.ORG Sun Jun 18 11:14:41 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 744C016A479; Sun, 18 Jun 2006 11:14:41 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4537F43D45; Sun, 18 Jun 2006 11:14:41 +0000 (GMT) (envelope-from yar@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 k5IBEfeE099100; Sun, 18 Jun 2006 11:14:41 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5IBEffx099099; Sun, 18 Jun 2006 11:14:41 GMT (envelope-from yar) Message-Id: <200606181114.k5IBEffx099099@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 18 Jun 2006 11:14:41 +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.sbin/asf Makefile asf.8 asf.c asf.h asf_kld.c asf_kvm.c asf_prog.c 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: Sun, 18 Jun 2006 11:14:41 -0000 yar 2006-06-18 11:14:41 UTC FreeBSD src repository Modified files: usr.sbin/asf Makefile asf.8 asf.c Added files: usr.sbin/asf asf.h asf_kld.c asf_kvm.c asf_prog.c Log: Give a major overhaul to asf(8). The improvements are: - can get the kld info from core files via kvm(3); - can use kldstat(2) directly, which is a piece of cake; - can use .symbols or whatever, which allows for use by non-developers when reporting system crashes -- now asf(8) can be mentioned in the handbook at last; - speed (no more double fts(3) per loaded module); - various bugs fixed. At the same time, the new asf(8) should stay compatible with the old one, bar bugs. Perhaps some defaults may be changed later to match today's state of affairs. Reviewed by: grog MFC after: 1 month Sponsored by: RiNet (Cronyx Plus LLC) Revision Changes Path 1.3 +6 -0 src/usr.sbin/asf/Makefile 1.8 +76 -16 src/usr.sbin/asf/asf.8 1.9 +303 -221 src/usr.sbin/asf/asf.c 1.1 +40 -0 src/usr.sbin/asf/asf.h (new) 1.1 +59 -0 src/usr.sbin/asf/asf_kld.c (new) 1.1 +128 -0 src/usr.sbin/asf/asf_kvm.c (new) 1.1 +73 -0 src/usr.sbin/asf/asf_prog.c (new)