Lines Matching refs:rdt
653 struct ovl_readdir_translate *rdt =
655 struct dir_context *orig_ctx = rdt->orig_ctx;
657 if (rdt->parent_ino && strcmp(name, "..") == 0) {
658 ino = rdt->parent_ino;
659 } else if (rdt->cache) {
662 p = ovl_cache_entry_find(&rdt->cache->root, name, namelen);
665 } else if (rdt->xinobits) {
666 ino = ovl_remap_lower_ino(ino, rdt->xinobits, rdt->fsid,
667 name, namelen, rdt->xinowarn);
694 struct ovl_readdir_translate rdt = {
701 if (rdt.xinobits && lower_layer)
702 rdt.fsid = lower_layer->fsid;
714 rdt.parent_ino = stat.ino;
718 rdt.cache = ovl_cache_get_impure(&file->f_path);
719 if (IS_ERR(rdt.cache))
720 return PTR_ERR(rdt.cache);
723 err = iterate_dir(od->realfile, &rdt.ctx);
724 ctx->pos = rdt.ctx.pos;