Lines Matching refs:rdt
665 struct ovl_readdir_translate *rdt = in ovl_fill_real() local
667 struct dir_context *orig_ctx = rdt->orig_ctx; in ovl_fill_real()
669 if (rdt->parent_ino && strcmp(name, "..") == 0) { in ovl_fill_real()
670 ino = rdt->parent_ino; in ovl_fill_real()
671 } else if (rdt->cache) { in ovl_fill_real()
674 p = ovl_cache_entry_find(&rdt->cache->root, name, namelen); in ovl_fill_real()
677 } else if (rdt->xinobits) { in ovl_fill_real()
678 ino = ovl_remap_lower_ino(ino, rdt->xinobits, rdt->fsid, in ovl_fill_real()
679 name, namelen, rdt->xinowarn); in ovl_fill_real()
706 struct ovl_readdir_translate rdt = { in ovl_iterate_real() local
713 if (rdt.xinobits && lower_layer) in ovl_iterate_real()
714 rdt.fsid = lower_layer->fsid; in ovl_iterate_real()
726 rdt.parent_ino = stat.ino; in ovl_iterate_real()
730 rdt.cache = ovl_cache_get_impure(&file->f_path); in ovl_iterate_real()
731 if (IS_ERR(rdt.cache)) in ovl_iterate_real()
732 return PTR_ERR(rdt.cache); in ovl_iterate_real()
735 err = iterate_dir(od->realfile, &rdt.ctx); in ovl_iterate_real()
736 ctx->pos = rdt.ctx.pos; in ovl_iterate_real()