diff options
author | Tao Ma <tao.ma@oracle.com> | 2010-03-10 09:56:52 +0800 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2010-03-17 12:28:00 -0700 |
commit | 6527f8f848ec84b9daf1cb07601266126b8507ab (patch) | |
tree | fd7bbdfb3a63921e78f22480f60b5bc037e37d16 /fs/ocfs2/refcounttree.c | |
parent | 78c37eb0d5e6a9727b12ea0f1821795ffaa66cfe (diff) | |
download | blackbird-op-linux-6527f8f848ec84b9daf1cb07601266126b8507ab.tar.gz blackbird-op-linux-6527f8f848ec84b9daf1cb07601266126b8507ab.zip |
ocfs2: Update i_blocks in reflink operations.
In reflink, we need to upate i_blocks for the target inode.
Reported-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/refcounttree.c')
-rw-r--r-- | fs/ocfs2/refcounttree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index 9e96921dffda..29405f2ff616 100644 --- a/fs/ocfs2/refcounttree.c +++ b/fs/ocfs2/refcounttree.c @@ -4075,6 +4075,7 @@ static int ocfs2_complete_reflink(struct inode *s_inode, OCFS2_I(t_inode)->ip_dyn_features = OCFS2_I(s_inode)->ip_dyn_features; spin_unlock(&OCFS2_I(t_inode)->ip_lock); i_size_write(t_inode, size); + t_inode->i_blocks = s_inode->i_blocks; di->i_xattr_inline_size = s_di->i_xattr_inline_size; di->i_clusters = s_di->i_clusters; |