On Wed, 21 Jul 2010, Steven Whitehouse wrote: > Hi, > > Looks good to me, I've added it to the -nmw tree. There are a few more > GFP_NOFAIL instances in the code that we can probably remove in the > future, but these two are pretty easy. Thanks for the patch, > Thanks! I'm planning on replacing __GFP_NOFAIL with a different flag that will use all of the page allocator's capabilities (direct reclaim, compaction for order > 0, and oom killer) but not loop forever. Existing __GFP_NOFAIL callers can then do do { page = alloc_page(GFP_KERNEL | __GFP_KILLABLE); } while (!page); to duplicate the behavior of __GFP_NOFAIL until such time as __GFP_KILLABLE can be removed as well. That's what I was planning for the remaining instances in gfs2 during the second phase. -- 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>