From patchwork Wed Feb 20 19:41:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 2168931 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 35A96DF230 for ; Wed, 20 Feb 2013 19:44:48 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1U8FYW-0006EK-KD; Wed, 20 Feb 2013 19:42:16 +0000 Received: from mail-pa0-f51.google.com ([209.85.220.51]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1U8FY8-00069O-Fb for linux-arm-kernel@lists.infradead.org; Wed, 20 Feb 2013 19:41:53 +0000 Received: by mail-pa0-f51.google.com with SMTP id hz1so4193923pad.38 for ; Wed, 20 Feb 2013 11:41:51 -0800 (PST) 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=dk0ZAUIc9qXhzkjWzppI9vQY+Fg/TrjrRqSHGSRf+9Y=; b=huqYPwcfYbfPMWi1pY6MBVhwGLoWeuluXQ7tEtmzF7wEcIfg9V/lAc3KCUxXNBmjOq hDjJK2wFNLB0Bnausg5RnN5geQvvLJPx3StgFaQ/tmMNay/WqTu6CGNQohpFgh5jmTCb tFB8vWhvdEqJtvoE1vNE1FAgs79nFStQvj10kNXk10o/r76j57YDb1wSY4TFvguJxSpC AE5eLFBsKJzy8iDkf2KTp78PslWRJ0BrSp/rtUGv1TxrxdH/dpqAw+OsLAgo/soQNFCc YMOpEa6SZL8BhRyP++zlMq2HbYcE2Yj9obRIJhHTS76E1SrQM2SurLzY7CCthzCGuNGC 25rQ== X-Received: by 10.68.224.169 with SMTP id rd9mr4169931pbc.199.1361389311584; Wed, 20 Feb 2013 11:41:51 -0800 (PST) Received: from localhost (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id a10sm22571565pbq.29.2013.02.20.11.41.50 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 20 Feb 2013 11:41:50 -0800 (PST) From: Kevin Hilman To: Frederic Weisbecker Subject: [RFC/PATCH 3/5] virt CPU accounting: Kconfig: drop 64-bit requirment Date: Wed, 20 Feb 2013 11:41:40 -0800 Message-Id: <1361389302-11968-4-git-send-email-khilman@linaro.org> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1361389302-11968-1-git-send-email-khilman@linaro.org> References: <1361389302-11968-1-git-send-email-khilman@linaro.org> X-Gm-Message-State: ALoCoQkbxmKvphp1It5I5gDJ9Ek237r3U2NvSOgMjEB/WpLu6WRpmsfBQ6Wya4DPblyFohFJnXXK X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130220_144152_666983_2ECACCDC X-CRM114-Status: UNSURE ( 9.02 ) 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.220.51 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Mats Liljegren , linaro-dev@lists.linaro.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org 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 kernel_cpustat accessors to the portable atomic64 accessors. Signed-off-by: Kevin Hilman --- init/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/Kconfig b/init/Kconfig index 3abb019..b13af06 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -356,7 +356,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