Commit b377ff13 authored by Sage Weil's avatar Sage Weil

ceph: initialize i_size/i_rbytes on snapdir

Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent 09b8a7d2
...@@ -62,6 +62,7 @@ struct inode *ceph_get_snapdir(struct inode *parent) ...@@ -62,6 +62,7 @@ struct inode *ceph_get_snapdir(struct inode *parent)
.snap = CEPH_SNAPDIR, .snap = CEPH_SNAPDIR,
}; };
struct inode *inode = ceph_get_inode(parent->i_sb, vino); struct inode *inode = ceph_get_inode(parent->i_sb, vino);
struct ceph_inode_info *ci = ceph_inode(inode);
BUG_ON(!S_ISDIR(parent->i_mode)); BUG_ON(!S_ISDIR(parent->i_mode));
if (IS_ERR(inode)) if (IS_ERR(inode))
...@@ -71,7 +72,8 @@ struct inode *ceph_get_snapdir(struct inode *parent) ...@@ -71,7 +72,8 @@ struct inode *ceph_get_snapdir(struct inode *parent)
inode->i_gid = parent->i_gid; inode->i_gid = parent->i_gid;
inode->i_op = &ceph_dir_iops; inode->i_op = &ceph_dir_iops;
inode->i_fop = &ceph_dir_fops; inode->i_fop = &ceph_dir_fops;
ceph_inode(inode)->i_snap_caps = CEPH_CAP_PIN; /* so we can open */ ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */
ci->i_rbytes = 0;
return inode; return inode;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment