Hi, this is a next version of my patches which implement VFS helpers so that page_mkwrite() is reliably called at the first write access to a page after the amount of blocks allocated under the page could change. This solves the problem with filesystems dropping data on the floor when they hit ENOSPC (or EDQUOT) during writepage(). The series also contains patches for ext[2-4] showing how the VFS framework can be used. This is probably not the final version of the patches since I did some performance measurements with ext3 and allocating blocks on page-fault time instead of at writepage() time has a significant cost - BerkelyDB based workloads are slower by ~10% because of much higher file fragmentation (essentially allocation at writepage time had a kind of delayed allocation effect for us and it helped a lot in these random write scenarios). I'm thinking how to solve this so that any filesystem wanting reliable mmap and reasonable performance behaviour doesn't have to implement something like delayed allocation or other workaround again... Honza -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html