On Mon, 2010-05-10 at 16:37 -0700, Yinghai Lu wrote: > > if (lmbsize < size) > > continue; > > - base = min(lmbbase + lmbsize, max_addr); > > - res_base = lmb_find_region(lmbbase, base, size, align); > > - if (res_base != LMB_ERROR) > > - return res_base; > > + if ((lmbbase + lmbsize) <= start) > > + break; > > + bottom = max(lmbbase, start); > > + top = min(lmbbase + lmbsize, end); > > + if (bottom >= top) > > + continue; > > + found = lmb_find_region(lmbbase, top, size, align); > ^^^^^^^^^ > should use bottom here Correct, I missed that when converting. Cheers, Ben. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>