> @@ -57,8 +57,9 @@ static int adfs_write_begin(struct file *file, struct address_space *mapping, > &ADFS_I(mapping->host)->mmu_private); > if (unlikely(ret)) { > loff_t isize = mapping->host->i_size; > - if (pos + len > isize) > - vmtruncate(mapping->host, isize); > + if ((pos + len > isize) && > + inode_newsize_ok(mapping->host, isize) == 0) > + truncate_setsize(mapping->host, isize); No need for the inode_newsize_ok check here. -- 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