From patchwork Mon Jul 25 18:01:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1005692 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p6PI1UZC006089 for ; Mon, 25 Jul 2011 18:01:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751462Ab1GYSBM (ORCPT ); Mon, 25 Jul 2011 14:01:12 -0400 Received: from oproxy1-pub.bluehost.com ([66.147.249.253]:42632 "HELO oproxy1-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751379Ab1GYSBL (ORCPT ); Mon, 25 Jul 2011 14:01:11 -0400 Received: (qmail 23936 invoked by uid 0); 25 Jul 2011 18:01:11 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy1.bluehost.com with SMTP; 25 Jul 2011 18:01:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=xenotime.net; h=Received:Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References:Organization:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding:X-Identified-User; b=Sy95Vqd75oNb5WBGHOUCRaeUObrIosFVO5RPZfq7adPCoUYmzc0uT5h9xD0qpedzEVXjX5mszfuZwBZQZ5Gz8dsW6EFH/q2z7ZhX1cIktA7Y6DCeyLyiFRREaeaQKerq; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=chimera.site) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1QlPSo-0000Mx-Sv; Mon, 25 Jul 2011 12:01:11 -0600 Date: Mon, 25 Jul 2011 11:01:09 -0700 From: Randy Dunlap To: Stephen Rothwell , akpm Cc: linux-next@vger.kernel.org, LKML , kvm@vger.kernel.org, x86@kernel.org Subject: [PATCH -next] kvm: fix TASK_DELAY_ACCT kconfig warning Message-Id: <20110725110109.b06fe691.rdunlap@xenotime.net> In-Reply-To: <20110725162542.39ea8d8cbd51604523635c1a@canb.auug.org.au> References: <20110725162542.39ea8d8cbd51604523635c1a@canb.auug.org.au> Organization: YPO4 X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 25 Jul 2011 18:01:31 +0000 (UTC) From: Randy Dunlap Fix kconfig dependency warning: warning: (KVM) selects TASK_DELAY_ACCT which has unmet direct dependencies (TASKSTATS) Signed-off-by: Randy Dunlap --- arch/x86/kvm/Kconfig | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20110725.orig/arch/x86/kvm/Kconfig +++ linux-next-20110725/arch/x86/kvm/Kconfig @@ -31,6 +31,7 @@ config KVM select KVM_ASYNC_PF select USER_RETURN_NOTIFIER select KVM_MMIO + select TASKSTATS select TASK_DELAY_ACCT ---help--- Support hosting fully virtualized guest machines using hardware