ovl: don't set origin on broken lower hardlink
When copying up a file that has multiple hard links we need to break any
association with the origin file. This makes copy-up be essentially an
atomic replace.
The new file has nothing to do with the old one (except having the same
data and metadata initially), so don't set the overlay.origin attribute.
We can relax this in the future when we are able to index upper object by
origin.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Fixes: 3a1e819b4e
("ovl: store file handle of lower inode on copy up")
This commit is contained in:
parent
e85f82ff9b
commit
fbaf94ee3c
|
@ -392,10 +392,15 @@ static int ovl_copy_up_locked(struct dentry *workdir, struct dentry *upperdir,
|
||||||
/*
|
/*
|
||||||
* Store identifier of lower inode in upper inode xattr to
|
* Store identifier of lower inode in upper inode xattr to
|
||||||
* allow lookup of the copy up origin inode.
|
* allow lookup of the copy up origin inode.
|
||||||
|
*
|
||||||
|
* Don't set origin when we are breaking the association with a lower
|
||||||
|
* hard link.
|
||||||
*/
|
*/
|
||||||
err = ovl_set_origin(dentry, lowerpath->dentry, temp);
|
if (S_ISDIR(stat->mode) || stat->nlink == 1) {
|
||||||
if (err)
|
err = ovl_set_origin(dentry, lowerpath->dentry, temp);
|
||||||
goto out_cleanup;
|
if (err)
|
||||||
|
goto out_cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
upper = lookup_one_len(dentry->d_name.name, upperdir,
|
upper = lookup_one_len(dentry->d_name.name, upperdir,
|
||||||
dentry->d_name.len);
|
dentry->d_name.len);
|
||||||
|
|
Loading…
Reference in New Issue