qemu-devel
[Top][All Lists]
Advanced

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

Re: [RFC PATCH 1/2] bulk: Replace !CONFIG_SOFTMMU -> CONFIG_USER_ONLY


From: Philippe Mathieu-Daudé
Subject: Re: [RFC PATCH 1/2] bulk: Replace !CONFIG_SOFTMMU -> CONFIG_USER_ONLY
Date: Mon, 5 Jun 2023 22:29:08 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.11.2

On 3/6/23 05:49, Richard Henderson wrote:
On 6/2/23 15:58, Philippe Mathieu-Daudé wrote:
CONFIG_USER_ONLY is the opposite of CONFIG_SOFTMMU.
Replace !CONFIG_SOFTMMU negation by the positive form
which is clearer when reviewing code.

CONFIG_SOFTMMU should be reserved for the actual softmmu tlb, which we *should* be able to enable for user-only.  It is the only way to handle some of our host/guest page size problems.  Further, CONFIG_SOFTMMU should go away as a #define and become a runtime test (forced to true for system mode).  Pie in the sky stuff.

This would be:

  bool has_softmmu(void)
  {
  #ifdef CONFIG_USER_ONLY
      /* TODO: implement */
      return false;
  #else
      return true;
  #endif
  }

?

It is quite likely that all uses of CONFIG_SOFTMMU outside of tcg/, accel/tcg/, and random bits of include/ should only be using CONFIG_USER_ONLY.

I see.

Thanks,

Phil.



reply via email to

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