From owner-freebsd-acpi@FreeBSD.ORG Wed Apr 9 17:40:33 2014 Return-Path: Delivered-To: freebsd-acpi@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E1981DE for ; Wed, 9 Apr 2014 17:40:33 +0000 (UTC) Received: from mail-ee0-x22f.google.com (mail-ee0-x22f.google.com [IPv6:2a00:1450:4013: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 1AE0F16E7 for ; Wed, 9 Apr 2014 17:40:32 +0000 (UTC) Received: by mail-ee0-f47.google.com with SMTP id b15so2161374eek.34 for ; Wed, 09 Apr 2014 10:40:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=aCpa0Gaf9DWX964QMv26rLHQZiWqFqjOkjMa2cDMhEc=; b=Zlbv5F0lbjWArBpGsvR/fq6UJQnRoERo67jHoJGs1WltP4oFGsbgqssX1g4LQX66du vQlmElJSGbD6l2PgUGPOe4RyT0YUGxssHY/QrbMU+IQyeEJmxq8PWQbVrtF82IlyqgP9 kcKYKUKVOy10z/uIrMv+KXgrA2Mgv7cSz6+LH98AG7jCDJS+HMTeji2G1nEHV/k42VQm krEdLabhVWtWkip/KWF9evWFKv/kzZV3E61rXtrYbvTbIkPCOan6VvnbZxW0nYLhbMoG byRKpPTvSmOX0qOfjCeo7xvGtCHXP5p0DuCkN35OjyqNnlB6W2pbMYxA3/Oe2UR0sRdM 6k2g== MIME-Version: 1.0 X-Received: by 10.14.220.130 with SMTP id o2mr13815052eep.42.1397065230565; Wed, 09 Apr 2014 10:40:30 -0700 (PDT) Received: by 10.14.213.194 with HTTP; Wed, 9 Apr 2014 10:40:30 -0700 (PDT) Date: Wed, 9 Apr 2014 10:40:30 -0700 Message-ID: Subject: C-States configuration From: hiren panchasara To: freebsd-acpi@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-acpi@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: ACPI and power management development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 17:40:33 -0000 I am running -current on my T420 at r263906M debug.acpi.acpi_ca_version: 20130823 o/p of sysctl -a | grep acpi - http://bpaste.net/show/199806/ and I have following in my rc.conf: performance_cx_lowest="Cmax" economy_cx_lowest="Cmax" But I still get: % sysctl -a | grep cx_lowest hw.acpi.cpu.cx_lowest: C1 dev.cpu.0.cx_lowest: C1 dev.cpu.1.cx_lowest: C1 dev.cpu.2.cx_lowest: C1 dev.cpu.3.cx_lowest: C1 And I can do: # sysctl dev.cpu.0.cx_lowest=Cmax dev.cpu.0.cx_lowest: C1 -> C8 that tells me that Cmax is C8. % sysctl -d dev.cpu.0.cx_lowest dev.cpu.0.cx_lowest: lowest Cx sleep state to use I was expecting cx_lowest to be set to C8 because of rc.conf config I have. What am I missing here? cheers, Hiren