From patchwork Tue May 1 08:58:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [6/8] pseries: Fix use of global CPU state Date: Mon, 30 Apr 2012 22:58:58 -0000 From: Alexander Graf X-Patchwork-Id: 156044 Message-Id: <1335862740-17408-7-git-send-email-agraf@suse.de> To: qemu-devel Developers Cc: blauwirbel@gmail.com, Peter Portante , qemu-ppc@nongnu.org From: Peter Portante Commit ed120055c7f9b26b5707d3ceabbe5a3f06aaf937 (Implement PAPR VPA functions for pSeries shared processor partitions) introduced the deregister_dtl() function and typo "emv" as name of its argument. This went unnoticed because the code in that function can access the global variable "env" so that no build failure resulted. Fix the argument to read "env". Resolves LP#986241. Signed-off-by: Peter Portante Acked-by: Andreas Färber [agraf: fixed typo in commit message] Signed-off-by: Alexander Graf --- hw/spapr_hcall.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/spapr_hcall.c b/hw/spapr_hcall.c index 634763e..94bb504 100644 --- a/hw/spapr_hcall.c +++ b/hw/spapr_hcall.c @@ -482,7 +482,7 @@ static target_ulong register_dtl(CPUPPCState *env, target_ulong addr) return H_SUCCESS; } -static target_ulong deregister_dtl(CPUPPCState *emv, target_ulong addr) +static target_ulong deregister_dtl(CPUPPCState *env, target_ulong addr) { env->dispatch_trace_log = 0; env->dtl_size = 0;