From owner-freebsd-questions@FreeBSD.ORG Wed Jul 25 19:39:06 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B65016A503 for ; Wed, 25 Jul 2007 19:39:06 +0000 (UTC) (envelope-from idmc_vivr@intgdev.com) Received: from omr12.networksolutionsemail.com (omr12.networksolutionsemail.com [205.178.146.62]) by mx1.freebsd.org (Postfix) with ESMTP id EA0BC13C46E for ; Wed, 25 Jul 2007 19:39:05 +0000 (UTC) (envelope-from idmc_vivr@intgdev.com) Received: from mail.networksolutionsemail.com (ns-omr12.mgt.hosting.dc2.netsol.com [10.49.6.75]) by omr12.networksolutionsemail.com (8.13.6/8.13.6) with SMTP id l6PIw2e2012376 for ; Wed, 25 Jul 2007 14:58:02 -0400 Received: (qmail 2419 invoked by uid 78); 25 Jul 2007 18:58:02 -0000 Received: from unknown (HELO webmail19) (205.178.146.50) by 10.49.36.75 with SMTP; 25 Jul 2007 18:58:02 -0000 Received: from 209.254.236.34 (idmc_vivr@intgdev.com [209.254.236.34]) by webmail19 (Netsol 11.2.30) with WEBMAIL id 27050; Wed, 25 Jul 2007 18:58:02 +0000 From: "V.I.Victor" To: freebsd-questions@freebsd.org Importance: Normal Sensitivity: Normal Message-ID: X-Mailer: Network Solutions Webmail, Build 11.2.30 X-Originating-IP: [209.254.236.34] X-Forwarded-For: [(null)] Date: Wed, 25 Jul 2007 18:58:02 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: ACPI slowing CPU... or something else X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jul 2007 19:39:06 -0000 I've two 5.4 desktop boxes. Pretty much the same installation; both from the same CD, same apps, no monitor/keyboard, 1-user logged-on via ssh (command-line only w/no gui) and otherwise lightly loaded. Box_A: CPU: AMD-K7(tm) Processor (598.84-MHz 686-class CPU) avail memory = 121630720 (115 MB) ACPI disabled by blacklist. Box_B: CPU: Intel(R) Pentium(R) 4 CPU 1.80GHz (1794.19-MHz 686-class CPU) avail memory = 252186624 (240 MB) cpu0: on acpi0 acpi_throttle0: on cpu0 When running the following segment of a small gawk program: cnt=0; s=systime(); while(s==systime()) ; # next second s=systime(); while(s==systime()) cnt++; # count for 1-sec Box_A(600M) always reports 'cnt' between 310000 to 320000. Box_B(1800M) has been as low as 167000 and never higher than 254000. So -- Box_B is 3-times faster than Box_A but runs the segment (at best) about 20% more slowly! Yesterday was when I saw the Box_B(1800M) 167000-ish numbers. Today after seeing an increase to the 250000-ish numbers, I started to read-up on ACPI. sysctl -a | grep cpu.*freq reports: dev.cpu.0.freq: 1796 dev.cpu.0.freq_levels: 1796/-1 1571/-1 1347/-1 1122/-1 898/-1 \ 673/-1 449/-1 224/-1 dev.cpufreq.0.%driver: cpufreq dev.cpufreq.0.%parent: cpu0 If I understand the 'sysctl' output, Box_B is running (now) at 1796-MHz. And for Box_B cnt==252433; for Box_A cnt==318942. Any opinions on what's going on and/or what I'm not understanding? Thanks!