Searched refs:ESTALE (Results 1 - 25 of 126) sorted by relevance

123456

/linux-master/fs/ocfs2/
H A Dexport.c46 result = ERR_PTR(-ESTALE);
73 * as an inode, we return -ESTALE to be
76 status = -ESTALE;
85 status = -ESTALE;
96 if (status == -ESTALE) {
116 result = ERR_PTR(-ESTALE);
164 status = -ESTALE;
173 status = -ESTALE;
/linux-master/fs/xfs/
H A Dxfs_export.c119 return ERR_PTR(-ESTALE);
134 * We don't use ESTALE directly down the chain to not
141 error = -ESTALE;
165 return ERR_PTR(-ESTALE);
/linux-master/fs/efs/
H A Dnamei.c83 return ERR_PTR(-ESTALE);
90 return ERR_PTR(-ESTALE);
/linux-master/arch/alpha/include/uapi/asm/
H A Derrno.h47 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/arch/mips/include/uapi/asm/
H A Derrno.h106 #define ESTALE 151 /* Stale file handle */ macro
/linux-master/arch/sparc/include/uapi/asm/
H A Derrno.h44 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/tools/arch/alpha/include/uapi/asm/
H A Derrno.h47 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/tools/arch/mips/include/uapi/asm/
H A Derrno.h106 #define ESTALE 151 /* Stale file handle */ macro
/linux-master/tools/arch/sparc/include/uapi/asm/
H A Derrno.h44 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/include/uapi/asm-generic/
H A Derrno.h99 #define ESTALE 116 /* Stale file handle */ macro
/linux-master/tools/include/uapi/asm-generic/
H A Derrno.h99 #define ESTALE 116 /* Stale file handle */ macro
/linux-master/arch/um/os-Linux/
H A Dexecvp.c98 case ESTALE:
/linux-master/arch/parisc/include/uapi/asm/
H A Derrno.h41 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/tools/arch/parisc/include/uapi/asm/
H A Derrno.h41 #define ESTALE 70 /* Stale file handle */ macro
/linux-master/fs/exportfs/
H A Dexpfs.c166 err = -ESTALE;
187 * double check that this worked and return -ESTALE if not:
190 return ERR_PTR(-ESTALE);
443 return ERR_PTR(-ESTALE);
501 err = -ESTALE;
541 nresult = ERR_PTR(-ESTALE);
589 return ERR_PTR(-ESTALE);
/linux-master/fs/isofs/
H A Dexport.c28 return ERR_PTR(-ESTALE);
34 return ERR_PTR(-ESTALE);
/linux-master/fs/ceph/
H A Dexport.c137 return ERR_PTR(-ESTALE);
162 return err < 0 ? ERR_PTR(err) : ERR_PTR(-ESTALE);
166 return ERR_PTR(-ESTALE);
179 return ERR_PTR(-ESTALE);
198 /* -ESTALE if inode as been unlinked and no file is open */
201 return ERR_PTR(-ESTALE);
233 return ERR_PTR(-ESTALE);
239 return ERR_PTR(-ESTALE);
279 inode = ERR_PTR(-ESTALE);
/linux-master/fs/cachefiles/
H A Dxattr.c48 return -ESTALE;
102 int ret = -ESTALE;
241 int ret = -ESTALE;
H A Dvolume.c59 if (ret != -ESTALE)
/linux-master/fs/afs/
H A Dvalidation.c395 return test_bit(AFS_VNODE_DELETED, &vnode->flags) ? -ESTALE : 0;
402 ret = -ESTALE;
435 ret = -ESTALE;
/linux-master/include/linux/
H A Dnamei.h132 * Check to see if the error code was -ESTALE, and then determine whether
140 return unlikely(error == -ESTALE && !(flags & LOOKUP_REVAL));
/linux-master/drivers/gpu/drm/xe/
H A Dxe_uc_fw.h83 return -ESTALE;
/linux-master/fs/overlayfs/
H A Dnamei.c191 if (real == ERR_PTR(-ESTALE) &&
443 return -ESTALE;
469 return -ESTALE;
485 if (err == -ESTALE)
495 * Return 0 on match, -ESTALE on mismatch, < 0 on error.
510 err = -ESTALE;
535 * Return 0 on match, -ESTALE on mismatch, -ENODATA on no xattr, < 0 on error.
587 return upper ?: ERR_PTR(-ESTALE);
602 * Return 0 on match, -ESTALE on mismatch or stale origin, < 0 on error.
665 if (err == -ESTALE)
[all...]
/linux-master/fs/nfs/
H A Dread.c232 if (task->tk_status == -ESTALE) {
356 ret = -ESTALE;
405 ret = -ESTALE;
H A Dgetroot.c131 error = -ESTALE;

Completed in 1048 milliseconds

123456