Re: [PATCH v7 4/7] kvmppc: Handle memory plug/unplug to secure VM
From: Christoph Hellwig <hch@lst.de>
Date: 2019-08-29 08:39:32
Also in:
linux-mm
From: Christoph Hellwig <hch@lst.de>
Date: 2019-08-29 08:39:32
Also in:
linux-mm
On Thu, Aug 22, 2019 at 03:56:17PM +0530, Bharata B Rao wrote:
+ /*
+ * TODO: Handle KVM_MR_MOVE
+ */
+ if (change == KVM_MR_CREATE) {
+ uv_register_mem_slot(kvm->arch.lpid,
+ new->base_gfn << PAGE_SHIFT,
+ new->npages * PAGE_SIZE,
+ 0, new->id);
+ } else if (change == KVM_MR_DELETE)
+ uv_unregister_mem_slot(kvm->arch.lpid, old->id);
}In preparation for the KVM_MR_MOVE addition just using a switch statement here from the very beginning might make the code a little nicer to read.