[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1360140610-48309-1-git-send-email-hare@suse.de>
Date: Wed, 6 Feb 2013 09:50:10 +0100
From: Hannes Reinecke <hare@...e.de>
To: iommu@...ts.linux-foundation.org
Cc: linux-kernel@...r.kernel.org, Hannes Reinecke <hare@...e.de>,
David Woodhouse <dwmw2@...radead.org>
Subject: [PATCH] dmar: Zero out memory
kmemcheck complained about the use of uninitialized memory.
So there.
Cc: David Woodhouse <dwmw2@...radead.org>
Signed-off-by: Hannes Reinecke <hare@...e.de>
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c
index 86e2f4a..2623a57 100644
--- a/drivers/iommu/dmar.c
+++ b/drivers/iommu/dmar.c
@@ -1040,7 +1040,7 @@ int dmar_enable_qi(struct intel_iommu *iommu)
qi->desc = page_address(desc_page);
- qi->desc_status = kmalloc(QI_LENGTH * sizeof(int), GFP_ATOMIC);
+ qi->desc_status = kzalloc(QI_LENGTH * sizeof(int), GFP_ATOMIC);
if (!qi->desc_status) {
free_page((unsigned long) qi->desc);
kfree(qi);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists