Lines Matching refs:rdt
672 struct ovl_readdir_translate *rdt = in ovl_fill_real() local
674 struct dir_context *orig_ctx = rdt->orig_ctx; in ovl_fill_real()
676 if (rdt->parent_ino && strcmp(name, "..") == 0) { in ovl_fill_real()
677 ino = rdt->parent_ino; in ovl_fill_real()
678 } else if (rdt->cache) { in ovl_fill_real()
681 p = ovl_cache_entry_find(&rdt->cache->root, name, namelen); in ovl_fill_real()
684 } else if (rdt->xinobits) { in ovl_fill_real()
685 ino = ovl_remap_lower_ino(ino, rdt->xinobits, rdt->fsid, in ovl_fill_real()
686 name, namelen, rdt->xinowarn); in ovl_fill_real()
714 struct ovl_readdir_translate rdt = { in ovl_iterate_real() local
721 if (rdt.xinobits && lower_layer) in ovl_iterate_real()
722 rdt.fsid = lower_layer->fsid; in ovl_iterate_real()
734 rdt.parent_ino = stat.ino; in ovl_iterate_real()
738 rdt.cache = ovl_cache_get_impure(&file->f_path); in ovl_iterate_real()
739 if (IS_ERR(rdt.cache)) in ovl_iterate_real()
740 return PTR_ERR(rdt.cache); in ovl_iterate_real()
743 err = iterate_dir(od->realfile, &rdt.ctx); in ovl_iterate_real()
744 ctx->pos = rdt.ctx.pos; in ovl_iterate_real()