From owner-cvs-all@FreeBSD.ORG Tue Jul 15 17:08:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94F4337B401; Tue, 15 Jul 2003 17:08:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C89C43F75; Tue, 15 Jul 2003 17:08:44 -0700 (PDT) (envelope-from jmg@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 h6G08i0U027442; Tue, 15 Jul 2003 17:08:44 -0700 (PDT) (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6G08hAM027441; Tue, 15 Jul 2003 17:08:43 -0700 (PDT) Message-Id: <200307160008.h6G08hAM027441@repoman.freebsd.org> From: John-Mark Gurney Date: Tue, 15 Jul 2003 17:08:43 -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/sparc64/include asmacros.h intr_machdep.h src/sys/sparc64/sparc64 exception.S genassym.c interrupt.S intr_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jul 2003 00:08:45 -0000 jmg 2003/07/15 17:08:43 PDT FreeBSD src repository Modified files: sys/sparc64/include asmacros.h intr_machdep.h sys/sparc64/sparc64 exception.S genassym.c interrupt.S intr_machdep.c Log: add support for interrupt counting on sparc64. This copies part of the code from i386. The code has a slight bogon that interrupts are counted twice. Once on the ithread dispatch and once on the dispatch for the vector vmstat -i and systat -vm now contains interrupt counts. Reviewed by: jake Revision Changes Path 1.17 +11 -0 src/sys/sparc64/include/asmacros.h 1.13 +1 -0 src/sys/sparc64/include/intr_machdep.h 1.68 +23 -1 src/sys/sparc64/sparc64/exception.S 1.52 +1 -0 src/sys/sparc64/sparc64/genassym.c 1.7 +12 -1 src/sys/sparc64/sparc64/interrupt.S 1.16 +77 -2 src/sys/sparc64/sparc64/intr_machdep.c