Lines Matching defs:this
58 * To avoid this problem on decode time, we need to copy up an ancestor of
380 struct dentry *this, *parent = NULL;
399 * from racing with underlying layer rename. In this case, we don't
409 this = lookup_one_len(name.name.name, connected, name.name.len);
411 err = PTR_ERR(this);
412 if (IS_ERR(this)) {
414 } else if (!this || !this->d_inode) {
415 dput(this);
418 } else if (ovl_dentry_real_at(this, layer->idx) != real) {
419 dput(this);
427 return this;
432 this = ERR_PTR(err);
449 struct dentry *this = NULL;
460 this = d_find_any_alias(inode);
468 if (!this && layer->idx && ofs->indexdir && !WARN_ON(!d_is_dir(real))) {
489 this = ovl_lookup_real(sb, upper, &ofs->layers[0]);
493 if (IS_ERR_OR_NULL(this))
494 return this;
496 if (ovl_dentry_real_at(this, layer->idx) != real) {
497 dput(this);
498 this = ERR_PTR(-EIO);
501 return this;
573 struct dentry *next, *this;
595 * this happens more than once.
619 this = ovl_lookup_real_one(connected, next, layer);
620 if (IS_ERR(this))
621 err = PTR_ERR(this);
626 * In this case, we need to restart the lookup from the
634 this = ovl_lookup_real_ancestor(sb, real,
636 err = PTR_ERR_OR_ZERO(this);
640 connected = this;