From 527772ca0ea0447d8c5394e9d6bc1581bdf06835 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 21 Jun 2012 10:27:20 +0200 Subject: partition: Use dma_alloc for allocating buffers Drivers may use dma to transfer blocks, so put them into dma save memory. Signed-off-by: Sascha Hauer --- common/partitions.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'common/partitions.c') diff --git a/common/partitions.c b/common/partitions.c index 74b4f1201a..3d92838948 100644 --- a/common/partitions.c +++ b/common/partitions.c @@ -31,6 +31,7 @@ #include #include #include +#include struct partition { uint64_t first_sec; @@ -102,7 +103,7 @@ static void __maybe_unused try_dos_partition(struct block_device *blk, struct partition pentry; int i, rc; - buffer = xmalloc(SECTOR_SIZE); + buffer = dma_alloc(SECTOR_SIZE); /* read in the MBR to get the partition table */ rc = blk->ops->read(blk, buffer, 0, 1); @@ -142,7 +143,7 @@ static void __maybe_unused try_dos_partition(struct block_device *blk, } on_error: - free(buffer); + dma_free(buffer); } /** -- cgit v1.2.3