Hi, from the last discussion about __GFP_NOFAIL it turned out that the flag cannot be deprecated as easily as MM people hoped for. The current flag description leads people to inventing their own loops around GFP_{KERNEL|NOFS} allocations without any fallback failure policy. This makes the situation much worse for the MM layer because it is not aware of the hard no-fail requirements. First patch in this series tries to rephrase the documentation to be more clear about our intention. __GFP_NOFAIL is generally discouraged but users shouldn't lie to the allocator if they really cannot have any failure strategy. Second patch removes such an open coded retry loop in the jbd2 code which was introduced exactly because of the deprecation wording. I am not sure the patch is still required because Ted has mentioned something about changing this code. If he was faster then we can simply drop this one. I was hoping for more such opencoded paths but wasn't very successful. The next plan is to abuse coccinelle to find such patterns. The last two patches are attempts to get rid of __GFP_NOFAIL when it seemed they are not needed because there are error paths handled properly. I am not familiar with that code so I might be clearly wrong here and I would appreciate double checking from the respective maintainer. -- 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>