From owner-cvs-all@FreeBSD.ORG Thu Apr 19 01:24:32 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAEE716A404; Thu, 19 Apr 2007 01:24:32 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BC7D313C44C; Thu, 19 Apr 2007 01:24:32 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3J1OWap036206; Thu, 19 Apr 2007 01:24:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3J1OW6A036205; Thu, 19 Apr 2007 01:24:32 GMT (envelope-from njl) Message-Id: <200704190124.l3J1OW6A036205@repoman.freebsd.org> From: Nate Lawson Date: Thu, 19 Apr 2007 01:24:32 +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/sys interrupt.h src/sys/kern kern_intr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 19 Apr 2007 01:24:32 -0000 njl 2007-04-19 01:24:32 UTC FreeBSD src repository Modified files: sys/sys interrupt.h sys/kern kern_intr.c Log: Bump the interrupt storm detection counter to 1000. My slow fileserver gets a bogus irq storm detected when periodic daily kicks off at 3 am and disconnects the disk. Change the print logic to print once per second when the storm is occurring instead of only once. Otherwise, it appeared that something else was causing the errors each night at 3 am since the print only occurred the first time. Reviewed by: jhb MFC after: 1 week Revision Changes Path 1.143 +4 -4 src/sys/kern/kern_intr.c 1.36 +2 -1 src/sys/sys/interrupt.h