From: "Marc-André Lureau" <mlureau@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>,
qemu-devel@nongnu.org, pbonzini@redhat.com, rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH] RFC: linux-user-i386: crash on cpuid
Date: Fri, 16 Sep 2016 10:59:33 -0400 (EDT) [thread overview]
Message-ID: <2133468536.1318341.1474037973023.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20160916145637.GL6002@thinpad.lan.raisama.net>
Hi
----- Original Message -----
> On Fri, Sep 16, 2016 at 06:41:32PM +0400, Marc-André Lureau wrote:
> > Running cpuid instructions with a simple run like:
> > i386-linux-user/qemu-i386 tests/tcg/sha1-i386
> >
> > Results in the following assert:
> > #0 0x00007ffff64246f5 in raise () from /lib64/libc.so.6
> > #1 0x00007ffff64262fa in abort () from /lib64/libc.so.6
> > #2 0x00007ffff7937ec5 in g_assertion_message () from
> > /lib64/libglib-2.0.so.0
> > #3 0x00007ffff7937f5a in g_assertion_message_expr () from
> > /lib64/libglib-2.0.so.0
> > #4 0x000055555561b54c in apicid_bitwidth_for_count (count=0) at
> > /home/elmarco/src/qemu/include/hw/i386/topology.h:58
> > #5 0x000055555561b58a in apicid_smt_width (nr_cores=0, nr_threads=0) at
> > /home/elmarco/src/qemu/include/hw/i386/topology.h:67
> > #6 0x000055555561b5c3 in apicid_core_offset (nr_cores=0, nr_threads=0) at
> > /home/elmarco/src/qemu/include/hw/i386/topology.h:82
> > #7 0x000055555561b5e3 in apicid_pkg_offset (nr_cores=0, nr_threads=0) at
> > /home/elmarco/src/qemu/include/hw/i386/topology.h:89
> > #8 0x000055555561dd86 in cpu_x86_cpuid (env=0x555557999550, index=4,
> > count=3, eax=0x7fffffffcae8, ebx=0x7fffffffcaec, ecx=0x7fffffffcaf0,
> > edx=0x7fffffffcaf4) at /home/elmarco/src/qemu/target-i386/cpu.c:2405
> > #9 0x0000555555638e8e in helper_cpuid (env=0x555557999550) at
> > /home/elmarco/src/qemu/target-i386/misc_helper.c:106
> > #10 0x000055555599dc5e in static_code_gen_buffer ()
> > #11 0x00005555555952f8 in cpu_tb_exec (cpu=0x5555579912d0,
> > itb=0x7ffff4371ab0) at /home/elmarco/src/qemu/cpu-exec.c:166
> > #12 0x0000555555595c8e in cpu_loop_exec_tb (cpu=0x5555579912d0,
> > tb=0x7ffff4371ab0, last_tb=0x7fffffffd088, tb_exit=0x7fffffffd084,
> > sc=0x7fffffffd0a0) at /home/elmarco/src/qemu/cpu-exec.c:517
> > #13 0x0000555555595e50 in cpu_exec (cpu=0x5555579912d0) at
> > /home/elmarco/src/qemu/cpu-exec.c:612
> > #14 0x00005555555c065b in cpu_loop (env=0x555557999550) at
> > /home/elmarco/src/qemu/linux-user/main.c:297
> > #15 0x00005555555c25b2 in main (argc=2, argv=0x7fffffffd848,
> > envp=0x7fffffffd860) at /home/elmarco/src/qemu/linux-user/main.c:4803
> >
> > The fields are set in qemu_init_vcpu() with softmmu, but it's a stub
> > with linux-user.
> >
> > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> > ---
> > target-i386/cpu.c | 5 ++++-
> > 1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> > index 5a5299a..ce8f798 100644
> > --- a/target-i386/cpu.c
> > +++ b/target-i386/cpu.c
> > @@ -3097,7 +3097,10 @@ static void x86_cpu_realizefn(DeviceState *dev,
> > Error **errp)
> >
> > mce_init(cpu);
> >
> > -#ifndef CONFIG_USER_ONLY
> > +#ifdef CONFIG_USER_ONLY
> > + cs->nr_cores = smp_cores;
> > + cs->nr_threads = smp_threads;
> > +#else
>
> On CONFIG_USER_ONLY, smp_cores and smp_threads are defined as:
>
> /* *-user doesn't have configurable SMP topology */
> #define smp_cores 1
> #define smp_threads 1
>
> It sounds simpler to just set nr_cores and nr_threads to 1 by
> default in cpu_common_initfn(). (Preferably with a comment noting
> that the default value is changed by qemu_init_vcpu() for
> softmmu).
Ok, I'll resend a patch
thanks
next prev parent reply other threads:[~2016-09-16 14:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-16 14:41 [Qemu-devel] [PATCH] RFC: linux-user-i386: crash on cpuid Marc-André Lureau
2016-09-16 14:56 ` Eduardo Habkost
2016-09-16 14:59 ` Marc-André Lureau [this message]
2016-09-16 15:06 ` Marc-André Lureau
2016-09-16 16:52 ` Eduardo Habkost
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2133468536.1318341.1474037973023.JavaMail.zimbra@redhat.com \
--to=mlureau@redhat.com \
--cc=ehabkost@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).