]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commitc2d1c12ab621d322b50e3b4432e887a46f75760c
tree73ad1b1031b51fde68223cde76f287fc773acca6
parent7818425e7e33d5b5e8f9413ad7fd32bd61e823d5
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