From patchwork Fri Mar 18 03:27:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mohan Kumar M X-Patchwork-Id: 87469 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D199DB6FDC for ; Fri, 18 Mar 2011 14:47:13 +1100 (EST) Received: from localhost ([127.0.0.1]:52115 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q0Qec-0002SS-3B for incoming@patchwork.ozlabs.org; Thu, 17 Mar 2011 23:47:10 -0400 Received: from [140.186.70.92] (port=53714 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q0QZC-0000bw-G0 for qemu-devel@nongnu.org; Thu, 17 Mar 2011 23:41:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q0QZ9-00051r-4P for qemu-devel@nongnu.org; Thu, 17 Mar 2011 23:41:31 -0400 Received: from e23smtp07.au.ibm.com ([202.81.31.140]:39283) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q0QZ8-00050s-IH for qemu-devel@nongnu.org; Thu, 17 Mar 2011 23:41:31 -0400 Received: from d23relay04.au.ibm.com (d23relay04.au.ibm.com [202.81.31.246]) by e23smtp07.au.ibm.com (8.14.4/8.13.1) with ESMTP id p2I3S74Y011356 for ; Fri, 18 Mar 2011 14:28:07 +1100 Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.235.138]) by d23relay04.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p2I3S7EC1753318 for ; Fri, 18 Mar 2011 14:28:07 +1100 Received: from d23av02.au.ibm.com (loopback [127.0.0.1]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p2I3S79c027032 for ; Fri, 18 Mar 2011 14:28:07 +1100 Received: from explorer.in.ibm.com ([9.79.188.54]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p2I3S3hI026958; Fri, 18 Mar 2011 14:28:06 +1100 From: "M. Mohan Kumar" To: qemu-devel@nongnu.org, Stefan Hajnoczi Date: Fri, 18 Mar 2011 08:57:50 +0530 Message-Id: <1300418881-20972-3-git-send-email-mohan@in.ibm.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1300418881-20972-1-git-send-email-mohan@in.ibm.com> References: <1300418881-20972-1-git-send-email-mohan@in.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 202.81.31.140 Cc: Subject: [Qemu-devel] [V9 PATCH 02/13] virtio-9p: Enable CONFIG_THREAD if CONFIG_VIRTFS is enabled X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 9p Chroot environment needs APIs defined in qemu-thread.c, so enable CONFIG_THREAD if virtfs is enabled Signed-off-by: M. Mohan Kumar --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 2560357..9eddd38 100755 --- a/configure +++ b/configure @@ -2767,6 +2767,7 @@ fi if test "$linux" = "yes" ; then if test "$attr" = "yes" ; then echo "CONFIG_VIRTFS=y" >> $config_host_mak + echo "CONFIG_THREAD=y" >> $config_host_mak fi fi if test "$blobs" = "yes" ; then