On (07/10/15 10:32), Minchan Kim wrote: > static struct page *isolate_source_page(struct size_class *class) > { > struct page *page; > + int i; > + bool found = false; > why use 'bool found'? just return `page', which will be either NULL or !NULL? -ss > - page = class->fullness_list[ZS_ALMOST_EMPTY]; > - if (page) > - remove_zspage(page, class, ZS_ALMOST_EMPTY); > + for (i = ZS_ALMOST_EMPTY; i >= ZS_ALMOST_FULL; i--) { > + page = class->fullness_list[i]; > + if (!page) > + continue; > > - return page; > + remove_zspage(page, class, i); > + found = true; > + break; > + } > + > + return found ? page : NULL; > } -ss -- 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>