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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 617DDC43334 for ; Tue, 21 Jun 2022 16:46:25 +0000 (UTC) Received: from localhost ([::1]:36808 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o3h1E-000474-ES for qemu-devel@archiver.kernel.org; Tue, 21 Jun 2022 12:46:24 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48942) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o3guz-00051c-V9; Tue, 21 Jun 2022 12:39:59 -0400 Received: from [187.72.171.209] (port=49167 helo=outlook.eldorado.org.br) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o3gup-0001wS-LD; Tue, 21 Jun 2022 12:39:54 -0400 Received: from p9ibm ([10.10.71.235]) by outlook.eldorado.org.br over TLS secured channel with Microsoft SMTPSVC(8.5.9600.16384); Tue, 21 Jun 2022 13:38:38 -0300 Received: from [127.0.0.1] (unknown [10.10.70.45]) by p9ibm (Postfix) with ESMTPS id 4F79280012C; Tue, 21 Jun 2022 13:38:38 -0300 (-03) Message-ID: Date: Tue, 21 Jun 2022 13:38:37 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: [PATCH 01/11] target/ppc: receive DisasContext explicitly in GEN_PRIV Content-Language: en-US To: Lucas Coutinho , qemu-devel@nongnu.org, qemu-ppc@nongnu.org Cc: clg@kaod.org, danielhb413@gmail.com, david@gibson.dropbear.id.au, groug@kaod.org, richard.henderson@linaro.org, Matheus Ferst References: <20220615192006.3075821-1-lucas.coutinho@eldorado.org.br> <20220615192006.3075821-2-lucas.coutinho@eldorado.org.br> From: Leandro Lupori In-Reply-To: <20220615192006.3075821-2-lucas.coutinho@eldorado.org.br> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 21 Jun 2022 16:38:38.0728 (UTC) FILETIME=[5BF7D080:01D8858D] X-Host-Lookup-Failed: Reverse DNS lookup failed for 187.72.171.209 (failed) Received-SPF: pass client-ip=187.72.171.209; envelope-from=leandro.lupori@eldorado.org.br; helo=outlook.eldorado.org.br X-Spam_score_int: -4 X-Spam_score: -0.5 X-Spam_bar: / X-Spam_report: (-0.5 / 5.0 requ) BAYES_00=-1.9, NICE_REPLY_A=-0.001, PDS_HP_HELO_NORDNS=0.659, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On 6/15/22 16:19, Lucas Coutinho wrote: > > From: Matheus Ferst > > GEN_PRIV and related CHK_* macros just assumed that variable named > "ctx" would be in scope when they are used, and that it would be a > pointer to DisasContext. Change these macros to receive the pointer > explicitly. > > Signed-off-by: Matheus Ferst > Signed-off-by: Lucas Coutinho > --- Reviewed-by: Leandro Lupori Thanks, Leandro