On 2015/8/5 22:47, Dave Hansen wrote: > On 08/05/2015 12:54 AM, Xishi Qiu wrote: >> I add some debug code like this, but it doesn't trigger the dump_stack(). > ... >> + if (!list_empty(&area->free_list[migratetype])) { >> + printk("expand(), the list is not empty\n"); >> + dump_stack(); >> + } >> + > > That will probably not trigger unless you have allocations that are > falling back and converting other pageblocks from other migratetypes. > Hi Dave, I run some stress test, and trigger the print, it shows that the list is not empty. The reason is than fallback will find the largest possible block of pages in the other list, e.g. 1. we alloc order=2 block, and call __rmqueue_fallback(). 2. we find other list current_order=7 is not empty, and the lists(in the same pageblock) that order from 3~6 are not empty too. 3. then expand() will find the list is not empty. right? Thanks, Xishi Qiu > . > -- 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>