Module Name: src
Committed By: manu
Date: Sat Aug 9 03:17:11 UTC 2014
Modified Files:
src/lib/libperfuse: ops.c
Log Message:
Send GETATTR to filesystem for removed but still-open files, as
it is the expected behavior (bug caught by glusterFS regression tests)
To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/lib/libperfuse/ops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libperfuse/ops.c
diff -u src/lib/libperfuse/ops.c:1.63 src/lib/libperfuse/ops.c:1.64
--- src/lib/libperfuse/ops.c:1.63 Mon Jan 6 08:56:34 2014
+++ src/lib/libperfuse/ops.c Sat Aug 9 03:17:11 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: ops.c,v 1.63 2014/01/06 08:56:34 manu Exp $ */
+/* $NetBSD: ops.c,v 1.64 2014/08/09 03:17:11 manu Exp $ */
/*-
* Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@@ -1554,7 +1554,7 @@ perfuse_node_getattr_ttl(struct puffs_us
struct fuse_attr_out *fao;
int error = 0;
- if (pnd->pnd_flags & PND_REMOVED)
+ if ((pnd->pnd_flags & PND_REMOVED) && !(pnd->pnd_flags & PND_OPEN))
return ENOENT;
node_ref(opc);