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=-5.3 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,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 ADD7AC4740C for ; Mon, 9 Sep 2019 21:46:12 +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 711BC2081B for ; Mon, 9 Sep 2019 21:46:12 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=reactos.org header.i=@reactos.org header.b="ZDA8N1If" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 711BC2081B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=reactos.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:60916 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7RUB-00088S-J6 for qemu-devel@archiver.kernel.org; Mon, 09 Sep 2019 17:46:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:43742) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7RQO-0005mR-A4 for qemu-devel@nongnu.org; Mon, 09 Sep 2019 17:42:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7RQN-0006vp-Ej for qemu-devel@nongnu.org; Mon, 09 Sep 2019 17:42:16 -0400 Received: from iserv.reactos.org ([2a01:4f8:1c17:5ae1::1]:37910) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i7RQN-0006vQ-8U for qemu-devel@nongnu.org; Mon, 09 Sep 2019 17:42:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=reactos.org ; s=25047; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version: Date:Message-ID:From:References:Cc:To:Subject: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=60cEp3RzBseAuzqZywDGq86keWFicZQAhXpZOsUFdVk=; b=ZDA8N1Ifh9Ygvib7FKklD+Xsnt g7iRTZcxadyPKfNb9qnWaDmHJBwhvOKmqzE3zpqHd+ZuPQaTa5xmDknwjW2oSBWz5xxjnG5IEgJ/e RCe3U6EnCKrDWtINZjsvqrnMcBYFQRbP+h8xjxHWDmboeFS4JZqx/+IB37spNRorxoPU=; Received: from [2a01:e35:2e3e:3c40:45c0:4a4a:dd24:5f79] by iserv.reactos.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1i7RQI-0001Yi-Eb; Mon, 09 Sep 2019 21:42:12 +0000 To: Peter Maydell , qemu-devel@nongnu.org References: <20190802160458.25681-1-peter.maydell@linaro.org> <20190802160458.25681-4-peter.maydell@linaro.org> From: =?UTF-8?Q?Herv=c3=a9_Poussineau?= Message-ID: Date: Mon, 9 Sep 2019 23:42:09 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20190802160458.25681-4-peter.maydell@linaro.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a01:4f8:1c17:5ae1::1 Subject: Re: [Qemu-devel] [PATCH 3/3] hw/mips/mips_jazz: Remove no-longer-necessary override of do_unassigned_access 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: Aleksandar Rikalo , Aleksandar Markovic , Aurelien Jarno Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Le 02/08/2019 à 18:04, Peter Maydell a écrit : > Now that the MIPS CPU implementation uses the new > do_transaction_failed hook, we can remove the old code that handled > the do_unassigned_access hook. > > Signed-off-by: Peter Maydell > --- > hw/mips/mips_jazz.c | 27 ++++----------------------- > 1 file changed, 4 insertions(+), 23 deletions(-) Tested-by: Hervé Poussineau