VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Al Viro <viro@zeniv.linux.org.uk> 2015-04-04 04:05:48 -0400 committer: Al Viro <viro@zeniv.linux.org.uk> 2015-04-11 22:29:48 -0400 commit: 0fa6b005afdb3152ce85df963302e59b61115f9b parent: 7ec7b94a3339756dfbb88234e3e45a428e8c08fb
Commit Summary:
generic_write_checks(): drop isblk argument
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c
index d7fcb775311e..b5b020ace1b3 100644
--- a/fs/9p/vfs_file.c
+++ b/fs/9p/vfs_file.c
@@ -409,7 +409,7 @@ v9fs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
 	size_t count = iov_iter_count(from);
 	int err = 0;
 
-	retval = generic_write_checks(file, &origin, &count, 0);
+	retval = generic_write_checks(file, &origin, &count);
 	if (retval)
 		return retval;