From owner-freebsd-current@FreeBSD.ORG Tue Feb 19 11:14:55 2013 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4F9A3D31 for ; Tue, 19 Feb 2013 11:14:55 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 9884D680 for ; Tue, 19 Feb 2013 11:14:54 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA12202; Tue, 19 Feb 2013 13:14:49 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1U7l9t-00052C-0a; Tue, 19 Feb 2013 13:14:49 +0200 Message-ID: <51235EA7.6000208@FreeBSD.org> Date: Tue, 19 Feb 2013 13:14:47 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130121 Thunderbird/17.0.2 MIME-Version: 1.0 To: "Eggert, Lars" Subject: Re: system 20% busy at all times? References: <36DD2FB4-E26A-4F03-95D9-FFD855957269@my.gd> <8F861CF6-D0FA-4BD2-B73D-24CB247584A1@my.gd> In-Reply-To: X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "current@freebsd.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 11:14:55 -0000 Completely disabling ACPI rarely works with modern machines. Please try to run the following DTrace script (dtrace -s script-file) and capture its output. #pragma D option flowindent fbt::acpi_intr_handler:entry { self->trace = 1; } fbt:::entry /self->trace/ { printf("arg0 = %#x, arg1 = %#x, arg2 = %#x", arg0, arg1, arg2); } fbt:::return /self->trace/ { printf("@%p ret = %u", arg0, arg1); } fbt::acpi_intr_handler:return { self->trace = 0; exit(0); } -- Andriy Gapon