
thomas at tungstengraphics
Apr 17, 2008, 10:07 AM
Post #1 of 1
(268 views)
Permalink
|
|
[PATCH][Resend] Fix loading of large firmware files
|
|
Firmware loading has a memory allocation complexity of O(size * size), which makes loads of very large firmware files stall and fail. This patch fixes that problem by making the allocation complexity O(size * ln(size)). Signed-off-by: Thomas Hellstrom <thomas [at] tungstengraphics> --- drivers/base/firmware_class.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c index 4a1b9bf..4215cbf 100644 --- a/drivers/base/firmware_class.c +++ b/drivers/base/firmware_class.c @@ -206,7 +206,9 @@ fw_realloc_buffer(struct firmware_priv * if (min_size <= fw_priv->alloc_size) return 0; - new_size = ALIGN(min_size, PAGE_SIZE); + new_size = 2 * new_size; + new_size = (min_size > new_size) ? min_size : new_size; + new_size = ALIGN(new_size, PAGE_SIZE); new_data = vmalloc(new_size); if (!new_data) { printk(KERN_ERR "%s: unable to alloc buffer\n", __FUNCTION__); -- 1.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|