HomeSort by: relevance | last modified time | path
    Searched refs:ISWHITEOUT (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/sys/
namei.h 175 #define ISWHITEOUT 0x0020000 /* found whiteout */
namei.src 167 NAMEIFL ISWHITEOUT 0x0020000 /* found whiteout */
  /src/sys/ufs/lfs/
ulfs_lookup.c 155 int iswhiteout; /* temp result from cache_lookup() */ local in function:ulfs_lookup
182 cnp->cn_nameiop, cnp->cn_flags, &iswhiteout, vpp)) {
183 if (iswhiteout) {
184 cnp->cn_flags |= ISWHITEOUT;
201 if (iswhiteout) {
203 * The namecache set iswhiteout without finding a
207 * it is correct to set ISWHITEOUT in this case or
212 cnp->cn_flags |= ISWHITEOUT;
413 cnp->cn_flags |= ISWHITEOUT;
449 (cnp->cn_flags & ISWHITEOUT))) &
    [all...]
lfs_vnops.c 345 if (cnp->cn_flags & ISWHITEOUT) {
946 if (cnp->cn_flags & ISWHITEOUT) {
  /src/sys/rump/librump/rumpvfs/
rumpfs.c 581 if ((cnp->cn_flags & ISWHITEOUT) != 0) {
803 cnp->cn_flags |= ISWHITEOUT;
1031 if ((cnp->cn_flags & ISWHITEOUT) != 0)
1129 if ((cnp->cn_flags & ISWHITEOUT) != 0)
1162 if ((cnp->cn_flags & ISWHITEOUT) != 0)
1197 if ((cnp->cn_flags & ISWHITEOUT) != 0)
  /src/sys/ufs/ufs/
ufs_lookup.c 354 int iswhiteout; /* temp result from cache_lookup() */ local in function:ufs_lookup
382 cnp->cn_nameiop, cnp->cn_flags, &iswhiteout, vpp)) {
383 if (iswhiteout) {
384 cnp->cn_flags |= ISWHITEOUT;
402 if (iswhiteout) {
404 * The namecache set iswhiteout without finding a
408 * it is correct to set ISWHITEOUT in this case or
413 cnp->cn_flags |= ISWHITEOUT;
584 cnp->cn_flags |= ISWHITEOUT;
619 (cnp->cn_flags & ISWHITEOUT))) &
    [all...]
ufs_vnops.c 1274 if (cnp->cn_flags & ISWHITEOUT) {
2263 if (cnp->cn_flags & ISWHITEOUT) {
  /src/sys/fs/tmpfs/
tmpfs_subr.c 425 if (cnp->cn_flags & ISWHITEOUT) {
436 if (cnp->cn_flags & ISWHITEOUT)
tmpfs_vnops.c 141 int cachefound, iswhiteout; local in function:tmpfs_lookup
171 &iswhiteout, vpp);
172 if (iswhiteout) {
173 cnp->cn_flags |= ISWHITEOUT;
248 cnp->cn_flags |= ISWHITEOUT;
  /src/sys/fs/unionfs/
unionfs_vnops.c 114 int iswhiteout; local in function:unionfs_lookup
123 iswhiteout = 0;
215 if (cnp->cn_flags & ISWHITEOUT)
216 iswhiteout = 1; /* don't lookup lower */
217 if (iswhiteout == 0 && ldvp != NULLVP)
220 iswhiteout = 1; /* don't lookup lower */
222 UNIONFS_INTERNAL_DEBUG("unionfs_lookup: debug: whiteout=%d, path=%s\n", iswhiteout, cnp->cn_nameptr);
229 if (ldvp != NULLVP && !(cnflags & DOWHITEOUT) && iswhiteout == 0) {
1245 if (!(cnp->cn_flags & ISWHITEOUT)) {
1250 cnp->cn_flags |= ISWHITEOUT;
    [all...]
unionfs_subr.c 883 (lookuperr == ENOENT && (cn.cn_flags & ISWHITEOUT)))
  /src/sys/fs/union/
union_subr.c 1179 if (error == ENOENT && (cn.cn_flags & ISWHITEOUT)) {
union_vnops.c 335 int iswhiteout; local in function:union_lookup
362 iswhiteout = 0;
374 if (cnp->cn_flags & ISWHITEOUT) {
375 iswhiteout = 1;
380 iswhiteout = 1;
394 if (lowerdvp != NULLVP && !iswhiteout) {
  /src/sys/kern/
vfs_cache.c 514 * Filesystems that do support whiteouts should add ISWHITEOUT to
594 * Restore the ISWHITEOUT flag saved earlier.
954 * Fill in cache info. For negative hits, save the ISWHITEOUT flag
960 ncp->nc_whiteout = ((cnflags & ISWHITEOUT) != 0);
vfs_syscalls.c 2827 if (nd.ni_vp != NULLVP || !(nd.ni_cnd.cn_flags & ISWHITEOUT)) {
  /src/sys/nfs/
nfs_vnops.c 786 KASSERT((cnp->cn_flags & ISWHITEOUT) == 0);
  /src/sys/fs/puffs/
puffs_vnops.c 483 int found, iswhiteout; local in function:puffs_vnop_lookup
487 &iswhiteout, ap->a_vpp);
488 if (iswhiteout) {
489 cnp->cn_flags |= ISWHITEOUT;

Completed in 42 milliseconds