From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BE218C433F5 for ; Mon, 20 Sep 2021 06:49:42 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id AB89C61074 for ; Mon, 20 Sep 2021 06:49:41 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org AB89C61074 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=weilnetz.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=nongnu.org Received: from localhost ([::1]:59028 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mSD7U-0004Iy-RL for qemu-devel@archiver.kernel.org; Mon, 20 Sep 2021 02:49:40 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34202) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mSD3r-0007o2-By for qemu-devel@nongnu.org; Mon, 20 Sep 2021 02:45:55 -0400 Received: from mail.weilnetz.de ([37.120.169.71]:41576 helo=mail.v2201612906741603.powersrv.de) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mSD3m-0008If-Ab for qemu-devel@nongnu.org; Mon, 20 Sep 2021 02:45:55 -0400 Received: from macbook02.fritz.box (p57b42bf1.dip0.t-ipconnect.de [87.180.43.241]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.v2201612906741603.powersrv.de (Postfix) with ESMTPSA id BACC6DA07FF; Mon, 20 Sep 2021 08:45:43 +0200 (CEST) Subject: Re: [PATCH] tcg/tci: Remove its experimental status To: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , qemu-devel@nongnu.org References: <20210920062306.2723797-1-f4bug@amsat.org> From: Stefan Weil Message-ID: <1722b3da-5d05-1bb3-18b0-ce613dcdf050@weilnetz.de> Date: Mon, 20 Sep 2021 08:45:42 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20210920062306.2723797-1-f4bug@amsat.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=37.120.169.71; envelope-from=sw@weilnetz.de; helo=mail.v2201612906741603.powersrv.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, NICE_REPLY_A=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Thomas Huth , Richard Henderson Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Am 20.09.21 um 08:23 schrieb Philippe Mathieu-Daudé: > The following commits (released in v6.0.0) made raised the > quality of the TCI backend to the other TCG architectures, > thus is is not considerated experimental anymore: > - c6fbea47664..2f74f45e32b > - dc09f047edd..9e9acb7b348 > - b6139eb0578..2fc6f16ca5e > - dbcbda2cd84..5e8892db93f > > Signed-off-by: Philippe Mathieu-Daudé > --- > docs/about/build-platforms.rst | 4 ++-- > configure | 2 +- > meson.build | 4 ++-- > meson_options.txt | 2 +- > 4 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/docs/about/build-platforms.rst b/docs/about/build-platforms.rst > index bcb15497213..2eff89e8cba 100644 > --- a/docs/about/build-platforms.rst > +++ b/docs/about/build-platforms.rst > @@ -56,8 +56,8 @@ Those hosts are officially supported, with various accelerators: > > Other host architectures are not supported. It is possible to build QEMU on an > unsupported host architecture using the configure ``--enable-tcg-interpreter`` > -option to enable the experimental TCI support, but note that this is very slow > -and is not recommended. > +option to enable the TCI support, but note that this is very slow and is not > +recommended. Maybe "recommended for normal use." or a similar statement? Reviewed-by: Stefan Weil