The patch titled mem-controller gfp-mask fix has been added to the -mm tree. Its filename is mem-controller-gfp-mask-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mem-controller gfp-mask fix From: Badari Pulavarty <pbadari@xxxxxxxxx> Need to strip __GFP_HIGHMEM flag while passing to mem_container_cache_charge(). Signed-off-by: Badari Pulavarty <pbadari@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/filemap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN mm/filemap.c~mem-controller-gfp-mask-fix mm/filemap.c --- a/mm/filemap.c~mem-controller-gfp-mask-fix +++ a/mm/filemap.c @@ -440,7 +440,8 @@ int filemap_write_and_wait_range(struct int add_to_page_cache(struct page *page, struct address_space *mapping, pgoff_t offset, gfp_t gfp_mask) { - int error = mem_cgroup_cache_charge(page, current->mm, gfp_mask); + int error = mem_cgroup_cache_charge(page, current->mm, + gfp_mask & ~__GFP_HIGHMEM); if (error) goto out; _ Patches currently in -mm which might be from pbadari@xxxxxxxxx are ext3-convert-to-new-aops-fix.patch ext4-convert-to-new-aops-fix.patch mem-controller-gfp-mask-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html