projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48ae2e7
)
Avoid ENOENT response when recently invalidated fuse_ino_t is received from the kerne...
author
Ken Schalk
<kcs-github@xorian.net>
Tue, 11 Jan 2022 19:56:36 +0000
(14:56 -0500)
committer
GitHub
<noreply@github.com>
Tue, 11 Jan 2022 19:56:36 +0000
(19:56 +0000)
lib/fuse.c
patch
|
blob
|
history
diff --git
a/lib/fuse.c
b/lib/fuse.c
index a95d7c12d733f193d2c773e3f580d6e11f378a8c..f732470cea0bbb57293a097a529916e2d4c52147 100644
(file)
--- a/
lib/fuse.c
+++ b/
lib/fuse.c
@@
-1037,7
+1037,7
@@
static int try_get_path(struct fuse *f, fuse_ino_t nodeid, const char *name,
for (node = get_node(f, nodeid); node->nodeid != FUSE_ROOT_ID;
node = node->parent) {
- err = -E
NOENT
;
+ err = -E
STALE
;
if (node->name == NULL || node->parent == NULL)
goto out_unlock;
@@
-1246,7
+1246,7
@@
static int get_path_nullok(struct fuse *f, fuse_ino_t nodeid, char **path)
*path = NULL;
} else {
err = get_path_common(f, nodeid, NULL, path, NULL);
- if (err == -E
NOENT
)
+ if (err == -E
STALE
)
err = 0;
}