mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Trivial patches branch pull request 20211101 v2
-----BEGIN PGP SIGNATURE----- iQJGBAABCAAwFiEEzS913cjjpNwuT1Fz8ww4vT8vvjwFAmGByAgSHGxhdXJlbnRA dml2aWVyLmV1AAoJEPMMOL0/L748JyMP/RJmY8WPKvwFvmClyKe+ikgHRwDmTMST 172rBEr4sj/PWSu0A2OfaoJxXVq6KPnKb4ECInC6xCdw6J5O79WQh999wSguiel3 Lx8FScj6IBpWT97l4fKTBC8HeDk19BzwzVMXcw53mi3hRx1Rc9nZAFZ9NCn2UeqL 1KURpnEy85oNKfsX2dLnuTFYL6g24qfQWxjZm76tuPsTii4q0cSAl+MAq5NamFZ5 fR6LbyDIVvejeVtavhn6JNx0QA/Fjjmhploa6c3PrUZs0LG7QeM/00HU92GiMjbi 1z2/TDeSFAqKM5friztgjOhaKssEe3CaYnL0S23cmgMkPzqGICRaXBIxL44tlrG+ 8noyhTSZMBJDSKaGGW4VxKd7uwXI6vFgh8To+AZOFktm4f93N51tCOd7yYSXpgFh y4s5+UbAuaGfypb1WN7aSmuYcADaarpdGI8AXiYI70tiVmVwUeMJs6AXV/a7xLLL LmaXVGFPAMgnTMyBPGLV9nxcJLAV6IqmErVTu2BPnIDWAvMVImVLI4kizPg3OzHC XGDifQmitgDVtKt8WJH2+tlKA9GysoruMGXTESUMKeEY3lqdkm/OgEIhw3yJDySo TrCEdN7WtERA9OrVcoQblOltEOrpvtPohryYmC7XRtvqB21fTa96VQMpOjwyHeNA o5Xt/14GCSkh =qh4o -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/vivier/tags/trivial-branch-for-6.2-pull-request' into staging Trivial patches branch pull request 20211101 v2 # gpg: Signature made Tue 02 Nov 2021 07:21:44 PM EDT # gpg: using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C # gpg: issuer "laurent@vivier.eu" # gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full] # gpg: aka "Laurent Vivier <laurent@vivier.eu>" [full] # gpg: aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" [full] * remotes/vivier/tags/trivial-branch-for-6.2-pull-request: hw/input/lasips2: Fix typos in function names MAINTAINERS: Split HPPA TCG vs HPPA machines/hardware hw/core/machine: Add the missing delimiter in cpu_slot_to_string() monitor: Trim some trailing space from human-readable output Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
commit
c55e3370c3
9 changed files with 17 additions and 15 deletions
|
@ -211,10 +211,7 @@ HPPA (PA-RISC) TCG CPUs
|
|||
M: Richard Henderson <richard.henderson@linaro.org>
|
||||
S: Maintained
|
||||
F: target/hppa/
|
||||
F: hw/hppa/
|
||||
F: disas/hppa.c
|
||||
F: hw/net/*i82596*
|
||||
F: include/hw/net/lasi_82596.h
|
||||
|
||||
M68K TCG CPUs
|
||||
M: Laurent Vivier <laurent@vivier.eu>
|
||||
|
@ -1095,6 +1092,8 @@ R: Helge Deller <deller@gmx.de>
|
|||
S: Odd Fixes
|
||||
F: configs/devices/hppa-softmmu/default.mak
|
||||
F: hw/hppa/
|
||||
F: hw/net/*i82596*
|
||||
F: include/hw/net/lasi_82596.h
|
||||
F: pc-bios/hppa-firmware.img
|
||||
|
||||
M68K Machines
|
||||
|
|
|
@ -978,6 +978,9 @@ static char *cpu_slot_to_string(const CPUArchId *cpu)
|
|||
g_string_append_printf(s, "socket-id: %"PRId64, cpu->props.socket_id);
|
||||
}
|
||||
if (cpu->props.has_die_id) {
|
||||
if (s->len) {
|
||||
g_string_append_printf(s, ", ");
|
||||
}
|
||||
g_string_append_printf(s, "die-id: %"PRId64, cpu->props.die_id);
|
||||
}
|
||||
if (cpu->props.has_core_id) {
|
||||
|
|
|
@ -96,7 +96,7 @@ typedef enum {
|
|||
LASIPS2_STATUS_CLKSHD = 0x80,
|
||||
} lasips2_status_reg_t;
|
||||
|
||||
static const char *artist_read_reg_name(uint64_t addr)
|
||||
static const char *lasips2_read_reg_name(uint64_t addr)
|
||||
{
|
||||
switch (addr & 0xc) {
|
||||
case REG_PS2_ID:
|
||||
|
@ -116,7 +116,7 @@ static const char *artist_read_reg_name(uint64_t addr)
|
|||
}
|
||||
}
|
||||
|
||||
static const char *artist_write_reg_name(uint64_t addr)
|
||||
static const char *lasips2_write_reg_name(uint64_t addr)
|
||||
{
|
||||
switch (addr & 0x0c) {
|
||||
case REG_PS2_RESET:
|
||||
|
@ -145,7 +145,7 @@ static void lasips2_reg_write(void *opaque, hwaddr addr, uint64_t val,
|
|||
LASIPS2Port *port = opaque;
|
||||
|
||||
trace_lasips2_reg_write(size, port->id, addr,
|
||||
artist_write_reg_name(addr), val);
|
||||
lasips2_write_reg_name(addr), val);
|
||||
|
||||
switch (addr & 0xc) {
|
||||
case REG_PS2_CONTROL:
|
||||
|
@ -239,7 +239,7 @@ static uint64_t lasips2_reg_read(void *opaque, hwaddr addr, unsigned size)
|
|||
break;
|
||||
}
|
||||
trace_lasips2_reg_read(size, port->id, addr,
|
||||
artist_read_reg_name(addr), ret);
|
||||
lasips2_read_reg_name(addr), ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -1875,7 +1875,7 @@ void hmp_rocker_ports(Monitor *mon, const QDict *qdict)
|
|||
monitor_printf(mon, " port link duplex neg?\n");
|
||||
|
||||
for (port = list; port; port = port->next) {
|
||||
monitor_printf(mon, "%10s %-4s %-3s %2s %-3s\n",
|
||||
monitor_printf(mon, "%10s %-4s %-3s %2s %s\n",
|
||||
port->value->name,
|
||||
port->value->enabled ? port->value->link_up ?
|
||||
"up" : "down" : "!ena",
|
||||
|
|
|
@ -464,13 +464,13 @@ void x86_cpu_dump_state(CPUState *cs, FILE *f, int flags)
|
|||
snprintf(cc_op_name, sizeof(cc_op_name), "[%d]", env->cc_op);
|
||||
#ifdef TARGET_X86_64
|
||||
if (env->hflags & HF_CS64_MASK) {
|
||||
qemu_fprintf(f, "CCS=%016" PRIx64 " CCD=%016" PRIx64 " CCO=%-8s\n",
|
||||
qemu_fprintf(f, "CCS=%016" PRIx64 " CCD=%016" PRIx64 " CCO=%s\n",
|
||||
env->cc_src, env->cc_dst,
|
||||
cc_op_name);
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
qemu_fprintf(f, "CCS=%08x CCD=%08x CCO=%-8s\n",
|
||||
qemu_fprintf(f, "CCS=%08x CCD=%08x CCO=%s\n",
|
||||
(uint32_t)env->cc_src, (uint32_t)env->cc_dst,
|
||||
cc_op_name);
|
||||
}
|
||||
|
|
|
@ -4878,7 +4878,7 @@ static void x86_cpu_list_entry(gpointer data, gpointer user_data)
|
|||
desc = g_strdup_printf("%s", model_id);
|
||||
}
|
||||
|
||||
qemu_printf("x86 %-20s %-58s\n", name, desc);
|
||||
qemu_printf("x86 %-20s %s\n", name, desc);
|
||||
}
|
||||
|
||||
/* list available CPU models and flags */
|
||||
|
|
|
@ -8734,7 +8734,7 @@ void ppc_cpu_list(void)
|
|||
|
||||
#ifdef CONFIG_KVM
|
||||
qemu_printf("\n");
|
||||
qemu_printf("PowerPC %-16s\n", "host");
|
||||
qemu_printf("PowerPC %s\n", "host");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -398,14 +398,14 @@ void s390_cpu_list(void)
|
|||
for (feat = 0; feat < S390_FEAT_MAX; feat++) {
|
||||
const S390FeatDef *def = s390_feat_def(feat);
|
||||
|
||||
qemu_printf("%-20s %-50s\n", def->name, def->desc);
|
||||
qemu_printf("%-20s %s\n", def->name, def->desc);
|
||||
}
|
||||
|
||||
qemu_printf("\nRecognized feature groups:\n");
|
||||
for (group = 0; group < S390_FEAT_GROUP_MAX; group++) {
|
||||
const S390FeatGroupDef *def = s390_feat_group_def(group);
|
||||
|
||||
qemu_printf("%-20s %-50s\n", def->name, def->desc);
|
||||
qemu_printf("%-20s %s\n", def->name, def->desc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1098,7 +1098,7 @@ static void dump_tlb(CPUXtensaState *env, bool dtlb)
|
|||
qemu_printf("\tVaddr Paddr ASID Attr RWX Cache\n"
|
||||
"\t---------- ---------- ---- ---- --- -------\n");
|
||||
}
|
||||
qemu_printf("\t0x%08x 0x%08x 0x%02x 0x%02x %c%c%c %-7s\n",
|
||||
qemu_printf("\t0x%08x 0x%08x 0x%02x 0x%02x %c%c%c %s\n",
|
||||
entry->vaddr,
|
||||
entry->paddr,
|
||||
entry->asid,
|
||||
|
|
Loading…
Reference in a new issue