diff options
-rw-r--r-- | module/zfs/zpl_file.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/zfs/zpl_file.c b/module/zfs/zpl_file.c index 75a3b55d1..b625d8412 100644 --- a/module/zfs/zpl_file.c +++ b/module/zfs/zpl_file.c @@ -387,6 +387,8 @@ zpl_iter_write(struct kiocb *kiocb, struct iov_iter *from) count = iov_iter_count(from); ret = generic_write_checks(file, &kiocb->ki_pos, &count, isblk); + if (ret) + return (ret); #else /* * XXX - ideally this check should be in the same lock region with @@ -394,10 +396,10 @@ zpl_iter_write(struct kiocb *kiocb, struct iov_iter *from) * append and someone else grow the file. */ ret = generic_write_checks(kiocb, from); - count = ret; -#endif if (ret <= 0) return (ret); + count = ret; +#endif if (from->type & ITER_KVEC) seg = UIO_SYSSPACE; |