summary refs log tree commit diff stats
path: root/docs/devel
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-01-21 12:03:44 +0100
committerCornelia Huck <cohuck@redhat.com>2020-01-27 12:13:09 +0100
commit596cc12ccd6c124758dee686a67287e8584b2fc7 (patch)
treec4b0f85d49b581effc18f3ee637cacb768a0e161 /docs/devel
parentd6a9858d24df4fc8633e1c3cb7bf928b80b9685c (diff)
downloadfocaccia-qemu-596cc12ccd6c124758dee686a67287e8584b2fc7.tar.gz
focaccia-qemu-596cc12ccd6c124758dee686a67287e8584b2fc7.zip
target/s390x: Remove duplicated ifdef macro
Commit ae71ed8610 replaced the use of global max_cpus variable
with a machine property, but introduced a unnecessary ifdef, as
this block is already in the 'not CONFIG_USER_ONLY' branch part:

   86 #if defined(CONFIG_USER_ONLY)
   87
  ...
  106 #else /* !CONFIG_USER_ONLY */
  107
  ...
  292 static void do_ext_interrupt(CPUS390XState *env)
  293 {
  ...
  313 #ifndef CONFIG_USER_ONLY
  314         MachineState *ms = MACHINE(qdev_get_machine());
  315         unsigned int max_cpus = ms->smp.max_cpus;
  316 #endif

To ease code review, remove the duplicated preprocessor macro,
and move the declarations at the beginning of the statement.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200121110349.25842-6-philmd@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'docs/devel')
0 files changed, 0 insertions, 0 deletions