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=-13.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 81EECC433F5 for ; Fri, 24 Sep 2021 13:11:04 +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 0626260EE7 for ; Fri, 24 Sep 2021 13:11:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 0626260EE7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=mail.uni-paderborn.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=nongnu.org Received: from localhost ([::1]:39528 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mTkyj-0005RR-MT for qemu-devel@archiver.kernel.org; Fri, 24 Sep 2021 09:11:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50310) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mTkZr-0006wi-7l for qemu-devel@nongnu.org; Fri, 24 Sep 2021 08:45:19 -0400 Received: from collins.uni-paderborn.de ([2001:638:502:c003::14]:34716) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mTkZp-0007DB-3D for qemu-devel@nongnu.org; Fri, 24 Sep 2021 08:45:18 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.uni-paderborn.de; s=20170601; h=In-Reply-To:Content-Transfer-Encoding: Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Sender:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=zcmhsCo64eh6G4v0IQwrmXCCWSD6JmUi2gLRUnTe0yU=; b=QItziUGm5of86fQ1O3wupdoxtG OZS9Oij0UNyijq78oADN1o2mdKpMnedxqUGOTnKHGih/JWEIkv11hyg0XqVIDSSEbgl89sN0oCA0S BrHGBeeKdMX1UZ8Ud0PZGmeQNQVCxcjUg98MvzLCuhHi0t6eagsDmQRH71jFOYXW63aY=; Date: Fri, 24 Sep 2021 14:45:10 +0200 From: Bastian Koppelmann To: Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= Subject: Re: [PATCH v6 37/40] target/tricore: Restrict has_work() handler to sysemu Message-ID: <20210924124510.cdu7mc7cvqatyin2@schnipp-desktop> References: <20210924093847.1014331-1-f4bug@amsat.org> <20210924093847.1014331-38-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20210924093847.1014331-38-f4bug@amsat.org> X-IMT-Spam-Score: 0.0 () X-PMX-Version: 6.4.9.2830568, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2021.9.24.123316, AntiVirus-Engine: 5.86.0, AntiVirus-Data: 2021.9.23.5860001 X-Sophos-SenderHistory: ip=84.184.59.97, fs=5864811, da=120096576, mc=69, sc=0, hc=69, sp=0, fso=5864811, re=0, sd=0, hd=0 X-IMT-Authenticated-Sender: kbastian@UNI-PADERBORN.DE Received-SPF: pass client-ip=2001:638:502:c003::14; envelope-from=kbastian@mail.uni-paderborn.de; helo=collins.uni-paderborn.de X-Spam_score_int: -19 X-Spam_score: -2.0 X-Spam_bar: -- X-Spam_report: (-2.0 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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: Richard Henderson , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On Fri, Sep 24, 2021 at 11:38:44AM +0200, Philippe Mathieu-Daudé wrote: > Restrict has_work() to sysemu. > > Reviewed-by: Richard Henderson > Signed-off-by: Philippe Mathieu-Daudé > --- > target/tricore/cpu.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) Reviewed-by: Bastian Koppelmann Cheers, Bastian