mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 14:52:34 +00:00
NFS: Don't rely on PageError in nfs_readpage_release_partial
Don't rely on the PageError flag to tell us if one of the partial reads of the page failed. Instead, replace that with a dedicated flag in the struct nfs_page. Then clean out redundant uses of the PageError flag: the VM no longer checks it for reads. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
fbb5a9abf0
commit
fba730050d
2 changed files with 3 additions and 5 deletions
|
@ -34,6 +34,7 @@ enum {
|
|||
PG_NEED_COMMIT,
|
||||
PG_NEED_RESCHED,
|
||||
PG_PNFS_COMMIT,
|
||||
PG_PARTIAL_READ_FAILED,
|
||||
};
|
||||
|
||||
struct nfs_inode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue