NFSv4: nfs4_handle_delegation_recall_error should ignore EAGAIN

EAGAIN is a valid return code from nfs4_open_recover(), and should
be handled by nfs4_handle_delegation_recall_error by simply passing
it through.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
Trond Myklebust 2015-06-04 13:51:13 -04:00
Родитель e8d975e73e
Коммит 8eee52af27
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -1684,6 +1684,7 @@ static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct
"%d.\n", __func__, err); "%d.\n", __func__, err);
case 0: case 0:
case -ENOENT: case -ENOENT:
case -EAGAIN:
case -ESTALE: case -ESTALE:
break; break;
case -NFS4ERR_BADSESSION: case -NFS4ERR_BADSESSION: