From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59305) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ctsOW-0005jf-IK for qemu-devel@nongnu.org; Fri, 31 Mar 2017 04:58:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ctsOS-0003LP-LV for qemu-devel@nongnu.org; Fri, 31 Mar 2017 04:58:56 -0400 Received: from mail-wr0-x22b.google.com ([2a00:1450:400c:c0c::22b]:35674) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ctsOS-0003LB-ET for qemu-devel@nongnu.org; Fri, 31 Mar 2017 04:58:52 -0400 Received: by mail-wr0-x22b.google.com with SMTP id k6so90579018wre.2 for ; Fri, 31 Mar 2017 01:58:52 -0700 (PDT) References: <20170330164657.50c75e8c@nial.brq.redhat.com> <87k2764xex.fsf@linaro.org> <20170331102125.52405cd2@nial.brq.redhat.com> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <20170331102125.52405cd2@nial.brq.redhat.com> Date: Fri, 31 Mar 2017 09:58:49 +0100 Message-ID: <87h9294yba.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] qemu-2.9 crashes in tcg_handle_interrupt() during winx64 boot List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Mammedov Cc: Peter Maydell , Jan Kiszka , qemu-devel@nongnu.org, "Emilio G. Cota" , Paolo Bonzini , Pranith Kumar , KONRAD Frederic , Richard Henderson Igor Mammedov writes: > On Thu, 30 Mar 2017 16:05:58 +0100 > Alex Bennée wrote: > >> Igor Mammedov writes: >> >> > (PS: resend due to wrong qemu-devel mail list address in original >> > email) >> >> Le *sigh* another way of x86 generating IRQs ;-) >> >> Could you test this please? >> >> target/i386/misc_helper: wrap BQL around another IRQ generator >> >> Anything that calls into HW emulation must be protected by the BQL. >> >> Signed-off-by: Alex Bennée > it doesn't help, > it asserts in the same place anyway That's weird. If the lock was already held I could see it failing higher up but this seems to imply we are dropping a lock as we descend into hardware emulation. How often does this leg of the helper get called? > >> >> 1 file changed, 2 insertions(+) >> target/i386/misc_helper.c | 2 ++ >> >> modified target/i386/misc_helper.c >> @@ -156,7 +156,9 @@ void helper_write_crN(CPUX86State *env, int reg, target_ulong t0) >> break; >> case 8: >> if (!(env->hflags2 & HF2_VINTR_MASK)) { >> + qemu_mutex_lock_iothread(); >> cpu_set_apic_tpr(x86_env_get_cpu(env)->apic_state, t0); >> + qemu_mutex_unlock_iothread(); >> } >> env->v_tpr = t0 & 0x0f; >> break; >> -- >> Alex Bennée >> -- Alex Bennée