Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
09bf27a0
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
09bf27a0
编写于
9月 21, 2009
作者:
T
Tao Ma
提交者:
Joel Becker
9月 22, 2009
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ocfs2: Implement ocfs2_reflink.
Implement ocfs2_reflink. Signed-off-by:
N
Tao Ma
<
tao.ma@oracle.com
>
上级
0fe9b66c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
123 addition
and
0 deletion
+123
-0
fs/ocfs2/refcounttree.c
fs/ocfs2/refcounttree.c
+123
-0
未找到文件。
fs/ocfs2/refcounttree.c
浏览文件 @
09bf27a0
...
...
@@ -33,6 +33,7 @@
#include "extent_map.h"
#include "aops.h"
#include "xattr.h"
#include "namei.h"
#include <linux/bio.h>
#include <linux/blkdev.h>
...
...
@@ -4022,3 +4023,125 @@ static int ocfs2_create_reflink_node(struct inode *s_inode,
return
ret
;
}
static
int
__ocfs2_reflink
(
struct
dentry
*
old_dentry
,
struct
buffer_head
*
old_bh
,
struct
inode
*
new_inode
,
bool
preserve
)
{
int
ret
;
struct
inode
*
inode
=
old_dentry
->
d_inode
;
struct
buffer_head
*
new_bh
=
NULL
;
ret
=
filemap_fdatawrite
(
inode
->
i_mapping
);
if
(
ret
)
{
mlog_errno
(
ret
);
goto
out
;
}
ret
=
ocfs2_attach_refcount_tree
(
inode
,
old_bh
);
if
(
ret
)
{
mlog_errno
(
ret
);
goto
out
;
}
mutex_lock
(
&
new_inode
->
i_mutex
);
ret
=
ocfs2_inode_lock
(
new_inode
,
&
new_bh
,
1
);
if
(
ret
)
{
mlog_errno
(
ret
);
goto
out_unlock
;
}
ret
=
ocfs2_create_reflink_node
(
inode
,
old_bh
,
new_inode
,
new_bh
,
preserve
);
if
(
ret
)
{
mlog_errno
(
ret
);
goto
inode_unlock
;
}
if
(
OCFS2_I
(
inode
)
->
ip_dyn_features
&
OCFS2_HAS_XATTR_FL
)
{
ret
=
ocfs2_reflink_xattrs
(
inode
,
old_bh
,
new_inode
,
new_bh
,
preserve
);
if
(
ret
)
mlog_errno
(
ret
);
}
inode_unlock:
ocfs2_inode_unlock
(
new_inode
,
1
);
brelse
(
new_bh
);
out_unlock:
mutex_unlock
(
&
new_inode
->
i_mutex
);
out:
if
(
!
ret
)
{
ret
=
filemap_fdatawait
(
inode
->
i_mapping
);
if
(
ret
)
mlog_errno
(
ret
);
}
return
ret
;
}
static
int
ocfs2_reflink
(
struct
dentry
*
old_dentry
,
struct
inode
*
dir
,
struct
dentry
*
new_dentry
,
bool
preserve
)
{
int
error
;
struct
inode
*
inode
=
old_dentry
->
d_inode
;
struct
buffer_head
*
old_bh
=
NULL
;
struct
inode
*
new_orphan_inode
=
NULL
;
if
(
!
ocfs2_refcount_tree
(
OCFS2_SB
(
inode
->
i_sb
)))
return
-
EOPNOTSUPP
;
error
=
ocfs2_create_inode_in_orphan
(
dir
,
inode
->
i_mode
,
&
new_orphan_inode
);
if
(
error
)
{
mlog_errno
(
error
);
goto
out
;
}
error
=
ocfs2_inode_lock
(
inode
,
&
old_bh
,
1
);
if
(
error
)
{
mlog_errno
(
error
);
goto
out
;
}
down_write
(
&
OCFS2_I
(
inode
)
->
ip_xattr_sem
);
down_write
(
&
OCFS2_I
(
inode
)
->
ip_alloc_sem
);
error
=
__ocfs2_reflink
(
old_dentry
,
old_bh
,
new_orphan_inode
,
preserve
);
up_write
(
&
OCFS2_I
(
inode
)
->
ip_alloc_sem
);
up_write
(
&
OCFS2_I
(
inode
)
->
ip_xattr_sem
);
ocfs2_inode_unlock
(
inode
,
1
);
brelse
(
old_bh
);
if
(
error
)
{
mlog_errno
(
error
);
goto
out
;
}
/* If the security isn't preserved, we need to re-initialize them. */
if
(
!
preserve
)
{
error
=
ocfs2_init_security_and_acl
(
dir
,
new_orphan_inode
);
if
(
error
)
mlog_errno
(
error
);
}
out:
if
(
!
error
)
{
error
=
ocfs2_mv_orphaned_inode_to_new
(
dir
,
new_orphan_inode
,
new_dentry
);
if
(
error
)
mlog_errno
(
error
);
}
if
(
new_orphan_inode
)
{
/*
* We need to open_unlock the inode no matter whether we
* succeed or not, so that other nodes can delete it later.
*/
ocfs2_open_unlock
(
new_orphan_inode
);
if
(
error
)
iput
(
new_orphan_inode
);
}
return
error
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录