cpu.c (671ad7c4468f795b66b4cd8f376f1b1ce6701b63) | cpu.c (e2c6cd567422bfa563be026b9741a1854aecdc06) |
---|---|
1/* 2 * QEMU S/390 CPU 3 * 4 * Copyright (c) 2009 Ulrich Hecht 5 * Copyright (c) 2011 Alexander Graf 6 * Copyright (c) 2012 SUSE LINUX Products GmbH 7 * Copyright (c) 2012 IBM Corp. 8 * --- 433 unchanged lines hidden (view full) --- 442} 443 444void s390_enable_css_support(S390CPU *cpu) 445{ 446 if (kvm_enabled()) { 447 kvm_s390_enable_css_support(cpu); 448 } 449} | 1/* 2 * QEMU S/390 CPU 3 * 4 * Copyright (c) 2009 Ulrich Hecht 5 * Copyright (c) 2011 Alexander Graf 6 * Copyright (c) 2012 SUSE LINUX Products GmbH 7 * Copyright (c) 2012 IBM Corp. 8 * --- 433 unchanged lines hidden (view full) --- 442} 443 444void s390_enable_css_support(S390CPU *cpu) 445{ 446 if (kvm_enabled()) { 447 kvm_s390_enable_css_support(cpu); 448 } 449} |
450 451void s390_do_cpu_set_diag318(CPUState *cs, run_on_cpu_data arg) 452{ 453 if (kvm_enabled()) { 454 kvm_s390_set_diag318(cs, arg.host_ulong); 455 } 456} |
|
450#endif 451 452static gchar *s390_gdb_arch_name(CPUState *cs) 453{ 454 return g_strdup("s390:64-bit"); 455} 456 457static Property s390x_cpu_properties[] = { --- 79 unchanged lines hidden --- | 457#endif 458 459static gchar *s390_gdb_arch_name(CPUState *cs) 460{ 461 return g_strdup("s390:64-bit"); 462} 463 464static Property s390x_cpu_properties[] = { --- 79 unchanged lines hidden --- |