From patchwork Wed Mar 20 23:34:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 2310561 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 3CAF6DF24C for ; Wed, 20 Mar 2013 23:38:17 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UISWx-0001CT-L0; Wed, 20 Mar 2013 23:34:51 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UISWk-00019u-DG for linux-arm-kernel@lists.infradead.org; Wed, 20 Mar 2013 23:34:39 +0000 Received: by mail-pb0-f49.google.com with SMTP id xa12so1754344pbc.36 for ; Wed, 20 Mar 2013 16:34:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=ozvthAY84wx7OKvV0iK3aTcThw40pzRKV9oqqFl7jMg=; b=oZfh/+BrmMMeTmoSAc0KYz5tAEmqmLd4QH5xdbijkNqRn5gLmyvJQTflydi7ZqQgbb PBiNs3j/f/ZgZx3O344YVCTautOr0hBFdcG6MuDrYMhvyYf6kmm/63I/LeB4YCaPt7ls 4bkB/K0TSEobeHuQ5UtPBn1ORE0Z2ePWfm0GVXfn6W9knn2zT3RALOQOCVWSv7CJIPls tBU0ufhyWHwRj9tNqRbEdvBWuy1siHYDDnsbAdTiK2pqFpShDOlYcM1mFIFVAJzbggsH j+fFckEKbGrcNqSNcrXPMOGhGXNF52oI4vvL/csdug90uRJjYzdglWhxWmZL3URRB7Xr RH9Q== X-Received: by 10.68.98.34 with SMTP id ef2mr11926643pbb.18.1363822476939; Wed, 20 Mar 2013 16:34:36 -0700 (PDT) Received: from localhost (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id eh5sm3660430pbc.44.2013.03.20.16.34.34 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 20 Mar 2013 16:34:35 -0700 (PDT) From: Kevin Hilman To: Frederic Weisbecker , Russell King , linux-kernel@vger.kernel.org Subject: [PATCH 2/3] init/Kconfig: virt CPU accounting: drop 64-bit requirment Date: Wed, 20 Mar 2013 16:34:26 -0700 Message-Id: <1363822467-6275-3-git-send-email-khilman@linaro.org> X-Mailer: git-send-email 1.8.2 In-Reply-To: <1363822467-6275-1-git-send-email-khilman@linaro.org> References: <1363822467-6275-1-git-send-email-khilman@linaro.org> X-Gm-Message-State: ALoCoQkl0NshsqGsynRQDOIBzxv1N74nEma69oTBv6bpzFUBh1A9mORZsl1Q+eEOdyse0FuB7Ae1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130320_193438_570806_ECFDB605 X-CRM114-Status: UNSURE ( 9.17 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Paul McKenney , linaro-kernel@lists.linaro.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The 64-bit requirement can be removed after the conversion of the conversion of the nsec granularity cputime to work on !64_BIT Cc: Frederic Weisbecker Signed-off-by: Kevin Hilman --- init/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/Kconfig b/init/Kconfig index 8a1dac2..1f1a328 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -329,7 +329,7 @@ config VIRT_CPU_ACCOUNTING_NATIVE config VIRT_CPU_ACCOUNTING_GEN bool "Full dynticks CPU time accounting" - depends on HAVE_CONTEXT_TRACKING && 64BIT + depends on HAVE_CONTEXT_TRACKING select VIRT_CPU_ACCOUNTING select CONTEXT_TRACKING help