Commit e7830f89 authored by Stefan Hajnoczi's avatar Stefan Hajnoczi
Browse files

Merge remote-tracking branch 'rth/tags/pull-axp-20161117' into staging



Update alpha palcode for smp

# gpg: Signature made Thu 17 Nov 2016 02:57:29 PM GMT
# gpg:                using RSA key 0xAD1270CC4DD0279B
# gpg: Good signature from "Richard Henderson <rth7680@gmail.com>"
# gpg:                 aka "Richard Henderson <rth@redhat.com>"
# gpg:                 aka "Richard Henderson <rth@twiddle.net>"
# Primary key fingerprint: 9CB1 8DDA F8E8 49AD 2AFC  16A4 AD12 70CC 4DD0 279B

* rth/tags/pull-axp-20161117:
  target-alpha: Log cpuid with -d int
  target-alpha: Update palcode for smp

Message-id: 1479394965-11254-1-git-send-email-rth@twiddle.net
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parents 363effe2 022f52e0
Loading
Loading
Loading
Loading
+18.7 KiB (149 KiB)

File changed.

No diff preview for this file type.

Compare c87a9263 to f3c7e44c
Original line number Diff line number Diff line
Subproject commit c87a92639b28ac42bc8f6c67443543b405dc479b
Subproject commit f3c7e44c70254975df2a00af39701eafbac4d471
+4 −2
Original line number Diff line number Diff line
@@ -307,8 +307,10 @@ void alpha_cpu_do_interrupt(CPUState *cs)
            name = "call_pal";
            break;
        }
        qemu_log("INT %6d: %s(%#x) pc=%016" PRIx64 " sp=%016" PRIx64 "\n",
                 ++count, name, env->error_code, env->pc, env->ir[IR_SP]);
        qemu_log("INT %6d: %s(%#x) cpu=%d pc=%016"
                 PRIx64 " sp=%016" PRIx64 "\n",
                 ++count, name, env->error_code, cs->cpu_index,
                 env->pc, env->ir[IR_SP]);
    }

    cs->exception_index = -1;