KVM: PPC: Book3E: Replace current->mm by kvm->mm
authorLeonardo Bras <leonardo@linux.ibm.com>
Tue, 26 Nov 2019 22:36:31 +0000 (19:36 -0300)
committerPaul Mackerras <paulus@ozlabs.org>
Fri, 17 Jan 2020 04:08:28 +0000 (15:08 +1100)
commite1bd0a7e248c3ce59b0509e47f035c0759fc68a3
tree73ad1b1031b51fde68223cde76f287fc773acca6
parent8a9c8925149f195d0bbd6b42aa3130ced0a075fb
KVM: PPC: Book3E: Replace current->mm by kvm->mm

Given that in kvm_create_vm() there is:
kvm->mm = current->mm;

And that on every kvm_*_ioctl we have:
if (kvm->mm != current->mm)
return -EIO;

I see no reason to keep using current->mm instead of kvm->mm.

By doing so, we would reduce the use of 'global' variables on code, relying
more in the contents of kvm struct.

Signed-off-by: Leonardo Bras <leonardo@linux.ibm.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
arch/powerpc/kvm/booke.c