Prev: [157/200] USB: cdc-acm: fix resource reclaim in error path of acm_probe
Next: [151/200] drm/i915: Rebind bo if currently bound with incorrect alignment.
From: Greg KH on 1 Jul 2010 17:40 2.6.34-stable review patch. If anyone has any objections, please let me know. ------------------ From: Wei Yongjun <yjwei(a)cn.fujitsu.com> If fail to create the vcpu, we should not create the debugfs for it. Signed-off-by: Wei Yongjun <yjwei(a)cn.fujitsu.com> Acked-by: Alexander Graf <agraf(a)suse.de> Cc: stable(a)kernel.org Signed-off-by: Avi Kivity <avi(a)redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> (Cherry-picked from commit 06056bfb944a0302a8f22eb45f09123de7fb417b) --- arch/powerpc/kvm/powerpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/arch/powerpc/kvm/powerpc.c +++ b/arch/powerpc/kvm/powerpc.c @@ -193,7 +193,8 @@ struct kvm_vcpu *kvm_arch_vcpu_create(st { struct kvm_vcpu *vcpu; vcpu = kvmppc_core_vcpu_create(kvm, id); - kvmppc_create_vcpu_debugfs(vcpu, id); + if (!IS_ERR(vcpu)) + kvmppc_create_vcpu_debugfs(vcpu, id); return vcpu; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |