So far we look for origin only if upper dentry is found. And we look for origin chain if metacopy feature is enabled. But with midlayer metacopy support it is possible that a no upper dentry is there and lower itself is metacopy inode. In that case also we need to setup origin chain and keep track of which inode is data inode so that later we can copy up the data from data inode. So this patch, introduces logic to setup origin chain when upper dentry is not present. As of now only metacopy feature needs it so it is done only if metacopy feature is enabled. Signed-off-by: Vivek Goyal <vgoyal@xxxxxxxxxx> --- fs/overlayfs/namei.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/fs/overlayfs/namei.c b/fs/overlayfs/namei.c index d4ad9408749f..99f896e7bcf2 100644 --- a/fs/overlayfs/namei.c +++ b/fs/overlayfs/namei.c @@ -802,6 +802,24 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, } } + if (origin_chain && !upperdentry && ctr && !d.is_dir) { + int nr_origins = 0; + struct ovl_path *stackptr = &stack[1]; + /* + * If upper is present, we already followed origin. If not, + * follow origin now. + */ + i = ovl_find_layer(ofs, &stack[0]); + i++; + err = ovl_check_origin(stack[0].dentry, &roe->lowerstack[i], + ofs->numlower - i, &stackptr, + &nr_origins, true); + if (err) + goto out_put; + + ctr += nr_origins; + } + oe = ovl_alloc_entry(ctr); err = -ENOMEM; if (!oe) -- 2.13.6 -- To unsubscribe from this list: send the line "unsubscribe linux-unionfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html