/src/sys/fs/tmpfs/ |
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/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...] |
/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...] |
/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...] |
/src/sys/fs/union/ |
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/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;
|