From patchwork Thu Mar 31 08:21:29 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: 89043 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 A2DFFB6F77 for ; Thu, 31 Mar 2011 19:45:12 +1100 (EST) Received: from localhost ([127.0.0.1]:35782 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5DV5-0000Nr-6Y for incoming@patchwork.ozlabs.org; Thu, 31 Mar 2011 04:45:07 -0400 Received: from [140.186.70.92] (port=52991 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5DFq-000868-CU for qemu-devel@nongnu.org; Thu, 31 Mar 2011 04:29:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q5DFn-0007CM-G4 for qemu-devel@nongnu.org; Thu, 31 Mar 2011 04:29:21 -0400 Received: from e28smtp08.in.ibm.com ([122.248.162.8]:50608) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q5DFm-0007Bz-PO for qemu-devel@nongnu.org; Thu, 31 Mar 2011 04:29:19 -0400 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by e28smtp08.in.ibm.com (8.14.4/8.13.1) with ESMTP id p2V7NFxs029941 for ; Thu, 31 Mar 2011 12:53:15 +0530 Received: from d28av04.in.ibm.com (d28av04.in.ibm.com [9.184.220.66]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p2V8LfXM2740404 for ; Thu, 31 Mar 2011 13:51:41 +0530 Received: from d28av04.in.ibm.com (loopback [127.0.0.1]) by d28av04.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p2V8LeKk002821 for ; Thu, 31 Mar 2011 19:21:41 +1100 Received: from explorer.in.ibm.com ([9.124.35.24]) by d28av04.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p2V8LeCn002810; Thu, 31 Mar 2011 19:21:40 +1100 From: "M. Mohan Kumar" To: qemu-devel@nongnu.org, Stefan Hajnoczi Date: Thu, 31 Mar 2011 13:51:29 +0530 Message-Id: <1301559700-6742-3-git-send-email-mohan@in.ibm.com> X-Mailer: git-send-email 1.7.4 In-Reply-To: <1301559700-6742-1-git-send-email-mohan@in.ibm.com> References: <1301559700-6742-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: 122.248.162.8 Cc: Subject: [Qemu-devel] [V10 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 4a4d085..9bfbe51 100755 --- a/configure +++ b/configure @@ -2769,6 +2769,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