git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
ea0b193
)
linux-revalidate-root-always-good-20020502
author
Kevin Coffman
<kwc@citi.umich.edu>
Thu, 2 May 2002 07:35:33 +0000 (07:35 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Thu, 2 May 2002 07:35:33 +0000 (07:35 +0000)
avoid ESTALE in 2.4.19-pre7
src/afs/LINUX/osi_vnodeops.c
patch
|
blob
|
history
diff --git
a/src/afs/LINUX/osi_vnodeops.c
b/src/afs/LINUX/osi_vnodeops.c
index
4c2fd2e
..
9bb463b
100644
(file)
--- a/
src/afs/LINUX/osi_vnodeops.c
+++ b/
src/afs/LINUX/osi_vnodeops.c
@@
-825,6
+825,13
@@
static int afs_linux_dentry_revalidate(struct dentry *dp)
if (!vcp || !parentvcp)
goto done;
+ /* If it is the AFS root, then there's no chance it needs
+ revalidating */
+ if (vcp == afs_globalVp) {
+ bad_dentry = 0;
+ goto done;
+ }
+
if (code = afs_InitReq(&treq, credp))
goto done;