提交 8e36f722 编写于 作者: M Markus Elfring 提交者: Chris Metcalf

tile-module: Rename jump labels in module_alloc()

Adjust jump labels according to the current Linux coding style convention.
Signed-off-by: NMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: NChris Metcalf <cmetcalf@mellanox.com>
上级 8797fe75
......@@ -49,23 +49,22 @@ void *module_alloc(unsigned long size)
for (; i < npages; ++i) {
pages[i] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
if (!pages[i])
goto error;
goto free_pages;
}
area = __get_vm_area(size, VM_ALLOC, MEM_MODULE_START, MEM_MODULE_END);
if (!area)
goto error;
goto free_pages;
area->nr_pages = npages;
area->pages = pages;
if (map_vm_area(area, prot_rwx, pages)) {
vunmap(area->addr);
goto error;
goto free_pages;
}
return area->addr;
error:
free_pages:
while (--i >= 0)
__free_page(pages[i]);
kfree(pages);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册