Hello, Yinghai. Just one nitpick. On Fri, Jun 29, 2012 at 11:27:57AM -0700, Yinghai Lu wrote: > /** > * memblock_double_array - double the size of the memblock regions array > * @type: memblock type of the regions array being doubled > @@ -204,6 +192,7 @@ static int __init_memblock memblock_doub > phys_addr_t new_area_size) > { > struct memblock_region *new_array, *old_array; > + phys_addr_t old_alloc_size, new_alloc_size; > phys_addr_t old_size, new_size, addr; > int use_slab = slab_is_available(); > int *in_slab; > @@ -217,6 +206,12 @@ static int __init_memblock memblock_doub > /* Calculate new doubled size */ > old_size = type->max * sizeof(struct memblock_region); > new_size = old_size << 1; > + /* > + * We need to allocated new one align to PAGE_SIZE, > + * so late could free them completely. An extra space and probably "so we can free them completely later" fits better. Thank you! -- tejun -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>