All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH kernel] vfio/spapr_tce: Check kzalloc() return when preregistering memory
@ 2017-03-27  3:23 Alexey Kardashevskiy
  2017-03-27  4:24 ` David Gibson
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Kardashevskiy @ 2017-03-27  3:23 UTC (permalink / raw)
  To: kvm; +Cc: Alexey Kardashevskiy, David Gibson, Alex Williamson

This adds missing checking for kzalloc() return value.

Fixes: 4b6fad7097f8 ("powerpc/mm/iommu, vfio/spapr: Put pages on VFIO container shutdown")
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 drivers/vfio/vfio_iommu_spapr_tce.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/vfio/vfio_iommu_spapr_tce.c b/drivers/vfio/vfio_iommu_spapr_tce.c
index cf3de91fbfe7..c298bb36e27a 100644
--- a/drivers/vfio/vfio_iommu_spapr_tce.c
+++ b/drivers/vfio/vfio_iommu_spapr_tce.c
@@ -198,6 +198,11 @@ static long tce_iommu_register_pages(struct tce_container *container,
 		return ret;
 
 	tcemem = kzalloc(sizeof(*tcemem), GFP_KERNEL);
+	if (!tcemem) {
+		mm_iommu_put(container->mm, mem);
+		return -ENOMEM;
+	}
+
 	tcemem->mem = mem;
 	list_add(&tcemem->next, &container->prereg_list);
 
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-04-11 23:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-27  3:23 [PATCH kernel] vfio/spapr_tce: Check kzalloc() return when preregistering memory Alexey Kardashevskiy
2017-03-27  4:24 ` David Gibson
2017-04-11  8:27   ` Alexey Kardashevskiy
2017-04-11 19:53     ` Alex Williamson
2017-04-11 23:40       ` Alexey Kardashevskiy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.