From owner-freebsd-questions@FreeBSD.ORG Wed Oct 29 17:00:21 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06F75288 for ; Wed, 29 Oct 2014 17:00:21 +0000 (UTC) Received: from mail-wg0-x22f.google.com (mail-wg0-x22f.google.com [IPv6:2a00:1450:400c:c00::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 89B5C6CC for ; Wed, 29 Oct 2014 17:00:20 +0000 (UTC) Received: by mail-wg0-f47.google.com with SMTP id a1so2367861wgh.20 for ; Wed, 29 Oct 2014 10:00:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Z5K2nH2AdLfBSAPeQ+SUUAVMiX61oTn9ZjGxhiCaAUA=; b=GPKsBVERV+zcoS8t30l5vRcXpqzgvkQxmqBhTnITCxGhus/0vYniwMsxFptJFyCaXd 3zzJTz9iCLSR9opYTfv7vC4tKGIVvD87kJ7CXnyHJiooSV1PvDOz8nzvwZmRFiSbsIif MabSbfx+IR87zBH0rgCI80Uy+w7tAQJWFX/Qv3JzXg0FKszxri/lsSM2Ack7tvQGF/mO vmAoDTD8nGtS5MvCy+sHYEee2I7pnynac6itHTu+aW25FLZztkNU1Q1dfbxYLFYlUuxO N6wQuEn/iYaWDGC3KD81YJHioHiigwhAphsV7hcdMHbO5BhxjRdgmbS8CW/9frA/Jb2/ xNhQ== MIME-Version: 1.0 X-Received: by 10.194.188.82 with SMTP id fy18mr4129543wjc.132.1414602018875; Wed, 29 Oct 2014 10:00:18 -0700 (PDT) Received: by 10.216.116.138 with HTTP; Wed, 29 Oct 2014 10:00:18 -0700 (PDT) In-Reply-To: <54502495.4090000@gmx.us> References: <544EDBBE.8090709@gmx.us> <544FD139.7090208@gmx.us> <54502495.4090000@gmx.us> Date: Wed, 29 Oct 2014 17:00:18 +0000 Message-ID: Subject: Re: High interrupt CPU in top... From: Peter Harrison To: Dutch Ingraham Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: FreeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Oct 2014 17:00:21 -0000 On 28 October 2014 23:19, Dutch Ingraham wrote: > On 10/28/14 18:37, Peter Harrison wrote: > > > > > Here's vmstat-i with Xorg running: > > > > interrupt total rate > > irq1: atkbd0 139 1 > > irq9: acpi0 835 7 > > irq12: psm0 1746 15 > > irq16: uhci3 20622511 177780 > > irq20: hpet0 uhci0 118696 1023 > > irq21: uhci1 11 0 > > irq23: ehci0 2 0 > > irq257: hdac0 3495 30 > > irq258: iwn0 13406 115 > > irq259: ahci0 8639 74 > > irq260: vgapci0 1979 17 > > Total 20771459 179064 > > > > And without Xorg running: > > > > interrupt total rate > > irq1: atkbd0 150 3 > > irq9: acpi0 378 9 > > irq20: hpet0 uhci0 8303 202 > > irq21: uhci1 11 0 > > irq23: ehci0 2 0 > > irq257: hdac0 61 1 > > irq258: iwn0 1536 37 > > irq259: ahci0 1634 39 > > Total 12075 294 > > > > So X is the problem? What can I do to fix it? > > > > Cheers, > > > > > > > > Peter Harrison. > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > > > > > Try adding the kernel tunable "hw.drm.msi=0" (without quotes) to your > /boot/loader.conf file and reboot. Check vmstat -i with xorg running. > If it works, fine - that addition will persist. Of course, if it > doesn't work, remove that line. > > That looks like it did the trick - thanks! Peter Harrison.