qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v7 05/27] tcg: add options for enabling MTTCG


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v7 05/27] tcg: add options for enabling MTTCG
Date: Mon, 23 Jan 2017 11:06:02 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0

On 01/19/2017 09:04 AM, Alex Bennée wrote:
> +void qemu_tcg_configure(QemuOpts *opts, Error **errp)
> +{
> +    const char *t = qemu_opt_get(opts, "thread");
> +    if (t) {
> +        if (strcmp(t, "multi") == 0) {
> +            if (TCG_OVERSIZED_GUEST) {
> +                error_setg(errp, "No MTTCG when guest word size > hosts");

I agree with this, since I don't ever imagine it'll be fixed.  It's a silly use
case in the first place considering the ubiquity of 64-bit hosts.

> +            } else if (!check_tcg_memory_orders_compatible()) {
> +                error_setg(errp,
> +                           "No MTTCG when guest MO is stronger than host 
> MO");

This, on the other hand, means that one cannot even force multi for testing.  A
warning perhaps?  And how shall we handle a guest translate adding barriers as
necessary to satisfy host memory ordering?


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]