Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
09bf27a0
Commit
09bf27a0
authored
Sep 21, 2009
by
Tao Ma
Committed by
Joel Becker
Sep 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ocfs2: Implement ocfs2_reflink.
Implement ocfs2_reflink. Signed-off-by:
Tao Ma
<
tao.ma@oracle.com
>
parent
0fe9b66c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
123 additions
and
0 deletions
+123
-0
fs/ocfs2/refcounttree.c
fs/ocfs2/refcounttree.c
+123
-0
No files found.
fs/ocfs2/refcounttree.c
View file @
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment