NFS: nfs_readdir_search_for_cookie() don't mark as eof if cookie not found
If we're searching for a specific cookie, and it isn't found in the page cache, we should try an uncached_readdir(). To do so, we return EBADCOOKIE, but we don't set desc->eof. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Родитель
11de3b11e0
Коммит
18fb5fe40c
|
@ -316,8 +316,9 @@ int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_des
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i == array->eof_index) {
|
if (i == array->eof_index) {
|
||||||
desc->eof = 1;
|
|
||||||
status = -EBADCOOKIE;
|
status = -EBADCOOKIE;
|
||||||
|
if (*desc->dir_cookie == array->last_cookie)
|
||||||
|
desc->eof = 1;
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
return status;
|
return status;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче