generic_write_checks(): drop isblk argument

all remaining callers are passing 0; some just obscure that fact.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2015-04-04 04:05:48 -04:00
parent 7ec7b94a33
commit 0fa6b005af
14 changed files with 36 additions and 60 deletions

View File

@@ -977,7 +977,7 @@ ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter,
dfprintk(FILE, "NFS: direct write(%pD2, %zd@%Ld)\n",
file, count, (long long) pos);
result = generic_write_checks(file, &pos, &count, 0);
result = generic_write_checks(file, &pos, &count);
if (result)
goto out;