qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

target/ppc: Fix typo in comments

"Deferred" was misspelled as "differed" in some comments, correct this
typo,

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Message-Id: <20200214155748.0896B745953@zero.eik.bme.hu>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

authored by

BALATON Zoltan and committed by
David Gibson
92eeb004 87262806

+5 -5
+2 -2
target/ppc/fpu_helper.c
··· 293 293 env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_VXVC; 294 294 /* Update the floating-point enabled exception summary */ 295 295 env->fpscr |= FP_FEX; 296 - /* Exception is differed */ 296 + /* Exception is deferred */ 297 297 } 298 298 } 299 299 ··· 644 644 645 645 if (cs->exception_index == POWERPC_EXCP_PROGRAM && 646 646 (env->error_code & POWERPC_EXCP_FP)) { 647 - /* Differred floating-point exception after target FPR update */ 647 + /* Deferred floating-point exception after target FPR update */ 648 648 if (fp_exceptions_enabled(env)) { 649 649 raise_exception_err_ra(env, cs->exception_index, 650 650 env->error_code, raddr);
+3 -3
target/ppc/translate/fp-impl.inc.c
··· 781 781 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr); 782 782 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX); 783 783 } 784 - /* We can raise a differed exception */ 784 + /* We can raise a deferred exception */ 785 785 gen_helper_float_check_status(cpu_env); 786 786 } 787 787 ··· 817 817 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr); 818 818 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX); 819 819 } 820 - /* We can raise a differed exception */ 820 + /* We can raise a deferred exception */ 821 821 gen_helper_float_check_status(cpu_env); 822 822 tcg_temp_free_i64(t1); 823 823 } ··· 850 850 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr); 851 851 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX); 852 852 } 853 - /* We can raise a differed exception */ 853 + /* We can raise a deferred exception */ 854 854 gen_helper_float_check_status(cpu_env); 855 855 } 856 856