]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks
authorWei Yongjun <yjwei@cn.fujitsu.com>
Fri, 22 Jan 2010 06:18:47 +0000 (14:18 +0800)
committerMarcelo Tosatti <mtosatti@redhat.com>
Mon, 25 Jan 2010 14:26:40 +0000 (12:26 -0200)
commitebf5a43cf0796cc060e14e6bec03858ef39c5bd4
treeec12f37abfee010a968001e513ba5813d0d1b615
parentd3c625bbab8ea081624ae9e85a96b727f8fb1a3b
KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks

vcpu->arch.mce_banks is malloc in kvm_arch_vcpu_init(), but
never free in any place, this may cause memory leak. So this
patch fixed to free it in kvm_arch_vcpu_uninit().

Cc: stable@kernel.org
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
arch/x86/kvm/x86.c