Skip to content

Commit

Permalink
ovl: move redirect to ovl_inode
Browse files Browse the repository at this point in the history
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
  • Loading branch information
Miklos Szeredi committed Jul 4, 2017
1 parent 09d8b58 commit cf31c46
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
3 changes: 2 additions & 1 deletion fs/overlayfs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,

oe->opaque = upperopaque;
oe->impure = upperimpure;
oe->redirect = upperredirect;
memcpy(oe->lowerstack, stack, sizeof(struct path) * ctr);
dentry->d_fsdata = oe;

Expand All @@ -444,6 +443,8 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
inode = ovl_get_inode(dentry, upperdentry);
if (!inode)
goto out_free_oe;

OVL_I(inode)->redirect = upperredirect;
}

revert_creds(old_cred);
Expand Down
2 changes: 1 addition & 1 deletion fs/overlayfs/ovl_entry.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ struct ovl_entry {
union {
struct {
u64 version;
const char *redirect;
bool opaque;
bool impure;
bool copying;
Expand All @@ -54,6 +53,7 @@ struct ovl_entry {
struct ovl_entry *ovl_alloc_entry(unsigned int numlower);

struct ovl_inode {
const char *redirect;
struct inode vfs_inode;
struct dentry *__upperdentry;
struct inode *lower;
Expand Down
3 changes: 2 additions & 1 deletion fs/overlayfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ static void ovl_dentry_release(struct dentry *dentry)
if (oe) {
unsigned int i;

kfree(oe->redirect);
for (i = 0; i < oe->numlower; i++)
dput(oe->lowerstack[i].dentry);
kfree_rcu(oe, rcu);
Expand Down Expand Up @@ -170,6 +169,7 @@ static struct inode *ovl_alloc_inode(struct super_block *sb)
{
struct ovl_inode *oi = kmem_cache_alloc(ovl_inode_cachep, GFP_KERNEL);

oi->redirect = NULL;
oi->__upperdentry = NULL;
oi->lower = NULL;

Expand All @@ -188,6 +188,7 @@ static void ovl_destroy_inode(struct inode *inode)
struct ovl_inode *oi = OVL_I(inode);

dput(oi->__upperdentry);
kfree(oi->redirect);

call_rcu(&inode->i_rcu, ovl_i_callback);
}
Expand Down
10 changes: 4 additions & 6 deletions fs/overlayfs/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,17 +206,15 @@ bool ovl_redirect_dir(struct super_block *sb)

const char *ovl_dentry_get_redirect(struct dentry *dentry)
{
struct ovl_entry *oe = dentry->d_fsdata;

return oe->redirect;
return OVL_I(d_inode(dentry))->redirect;
}

void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
{
struct ovl_entry *oe = dentry->d_fsdata;
struct ovl_inode *oi = OVL_I(d_inode(dentry));

kfree(oe->redirect);
oe->redirect = redirect;
kfree(oi->redirect);
oi->redirect = redirect;
}

void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
Expand Down

0 comments on commit cf31c46

Please sign in to comment.