From nobody Wed Nov 5 20:15:30 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1537203337571706.4297386332331; Mon, 17 Sep 2018 09:55:37 -0700 (PDT) Received: from localhost ([::1]:36574 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g1wo7-0001KS-Ju for importer@patchew.org; Mon, 17 Sep 2018 12:55:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41320) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g1wR0-0006bO-FM for qemu-devel@nongnu.org; Mon, 17 Sep 2018 12:31:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g1wQv-0002dB-Sf for qemu-devel@nongnu.org; Mon, 17 Sep 2018 12:31:37 -0400 Received: from wout2-smtp.messagingengine.com ([64.147.123.25]:53707) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g1wQv-000282-KL for qemu-devel@nongnu.org; Mon, 17 Sep 2018 12:31:33 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 5090855B; Mon, 17 Sep 2018 12:31:12 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Mon, 17 Sep 2018 12:31:12 -0400 Received: from localhost (flamenco.cs.columbia.edu [128.59.20.216]) by mail.messagingengine.com (Postfix) with ESMTPA id 9D571E414C; Mon, 17 Sep 2018 12:31:11 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=braap.org; h=cc :date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=mesmtp; bh=nJUoqieWNnLd20 TVnSJBgWOs3oX93EtL7iCQ8XhQkM0=; b=haye0H2mBK4OF7VJZmT+gsEWvfn6V2 G0yUYSawotjDyaB1CK0fBrHj7DP58/SlSaw7xr5SeGdu3HpSW2MYiXVXB7RD7u7u xUITED4e57+C93oDCxz+PMQF6RAiYA3tjtO8Gy75UzI6aDQoYPJzLGJ7LKG6yVgl 5tJKnxzo7+2bk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=nJUoqieWNnLd20TVnSJBgWOs3oX93EtL7iCQ8XhQkM0=; b=tjbTk32o 07p3Dvi/PMRRwCdYcNkJWt+/xCVJ2Reh/0gAa96yddjJyziCbbLj0xhBLcBBABwf mZ2RU2yJBKl2eN7L8QaI7SIIBRKZF6g0lvL0shyYZfZftsgKj2mOfvi04e0Wt40p kke3iRsythoFot/IgqIp/gb9YwiaiWriuZ9i8tcE1hogSVQ0gqNTm/t7HcHg+xbm 54iYAuEa4SYSsW9SMYzjjiSm02qt2TMd6BE5veOBTNOYKeSqjfqYj6aiZ2NEA/ig vc40FW028GKD5n4NlXkdNZHXQ0oMxFqYlUBcRA5+L04TxCVnpLogJVmM7l89QvG+ 3yfEC04/S36Srg== X-ME-Proxy: X-ME-Sender: From: "Emilio G. Cota" To: qemu-devel@nongnu.org Date: Mon, 17 Sep 2018 12:30:58 -0400 Message-Id: <20180917163103.6113-31-cota@braap.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180917163103.6113-1-cota@braap.org> References: <20180917163103.6113-1-cota@braap.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 64.147.123.25 Subject: [Qemu-devel] [PATCH 30/35] tcg: drop BQL assertion from tcg_handle_interrupt X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini , Richard Henderson , Peter Crosthwaite Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" From: Paolo Bonzini Cc: Peter Crosthwaite Cc: Richard Henderson Signed-off-by: Paolo Bonzini Signed-off-by: Emilio G. Cota --- accel/tcg/tcg-all.c | 1 - 1 file changed, 1 deletion(-) diff --git a/accel/tcg/tcg-all.c b/accel/tcg/tcg-all.c index 69ad44bd54..8b8b9ab05c 100644 --- a/accel/tcg/tcg-all.c +++ b/accel/tcg/tcg-all.c @@ -39,7 +39,6 @@ unsigned long tcg_tb_size; static void tcg_handle_interrupt(CPUState *cpu, int mask) { int old_mask; - g_assert(qemu_mutex_iothread_locked()); =20 old_mask =3D atomic_fetch_or(&cpu->interrupt_request, mask); =20 --=20 2.17.1