Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54551d85 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFS: Add a few more fatal I/O errors to nfs_error_is_fatal()



EACCES, EDQUOT, EFBIG and ESTALE are all fatal errors as far as NFS
I/O is concerned. They need to be reported back to the application.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 35a24421
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -756,9 +756,13 @@ static inline bool nfs_error_is_fatal(int err)
{
	switch (err) {
	case -ERESTARTSYS:
	case -EACCES:
	case -EDQUOT:
	case -EFBIG:
	case -EIO:
	case -ENOSPC:
	case -EROFS:
	case -ESTALE:
	case -E2BIG:
		return true;
	default: