The patch titled nfs-invariant-fix has been added to the -mm tree. Its filename is nfs-invariant-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: nfs-invariant-fix From: Nick Piggin <nickpiggin@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page-writeback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page-writeback.c~nfs-invariant-fix mm/page-writeback.c --- a/mm/page-writeback.c~nfs-invariant-fix +++ a/mm/page-writeback.c @@ -826,7 +826,7 @@ int __set_page_dirty_nobuffers(struct pa mapping2 = page_mapping(page); if (mapping2) { /* Race with truncate? */ BUG_ON(mapping2 != mapping); - WARN_ON(!PageUptodate(page)); + WARN_ON(!PagePrivate(page) && !PageUptodate(page)); if (mapping_cap_account_dirty(mapping)) { __inc_zone_page_state(page, NR_FILE_DIRTY); task_io_account_write(PAGE_CACHE_SIZE); _ Patches currently in -mm which might be from nickpiggin@xxxxxxxxxxxx are slob-implement-rcu-freeing.patch convert-hugetlbfs-to-use-vm_ops-fault.patch lazy-freeing-of-memory-through-madv_free.patch restore-madv_dontneed-to-its-original-linux-behaviour.patch only-allow-nonlinear-vmas-for-ram-backed-filesystems.patch nfs-invariant-fix.patch cpuset-remove-sched-domain-hooks-from-cpusets.patch sched2-sched-domain-sysctl.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