From patchwork Fri Jun 24 08:22:11 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: 101761 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C3766B6F8A for ; Fri, 24 Jun 2011 19:33:56 +1000 (EST) Received: from localhost ([::1]:57510 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa2lt-0006yJ-0i for incoming@patchwork.ozlabs.org; Fri, 24 Jun 2011 05:33:53 -0400 Received: from eggs.gnu.org ([140.186.70.92]:44570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa1ev-0006z4-MJ for qemu-devel@nongnu.org; Fri, 24 Jun 2011 04:22:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qa1et-0002RH-UY for qemu-devel@nongnu.org; Fri, 24 Jun 2011 04:22:37 -0400 Received: from e28smtp02.in.ibm.com ([122.248.162.2]:35386) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa1et-0002QC-4j for qemu-devel@nongnu.org; Fri, 24 Jun 2011 04:22:35 -0400 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by e28smtp02.in.ibm.com (8.14.4/8.13.1) with ESMTP id p5O8MSme006191 for ; Fri, 24 Jun 2011 13:52:28 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p5O8MSD62400384 for ; Fri, 24 Jun 2011 13:52:28 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p5O8MSx2004165 for ; Fri, 24 Jun 2011 13:52:28 +0530 Received: from virtfs.in.ibm.com ([9.124.35.90]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p5O8MS7d004156; Fri, 24 Jun 2011 13:52:28 +0530 From: "M. Mohan Kumar" To: qemu-devel@nongnu.org Date: Fri, 24 Jun 2011 13:52:11 +0530 Message-Id: <1308903744-2870-3-git-send-email-mohan@in.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1308903744-2870-1-git-send-email-mohan@in.ibm.com> References: <1308903744-2870-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.2 Cc: "M. Mohan Kumar" Subject: [Qemu-devel] [V11 02/15] virtio-9p: Enable CONFIG_THREAD if CONFIG_VIRTFS is enabled X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: "M. Mohan Kumar" 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 df63403..888ac87 100755 --- a/configure +++ b/configure @@ -2964,6 +2964,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