Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
c8a894d7
Commit
c8a894d7
authored
Jun 27, 2009
by
Chris Mason
Browse files
Btrfs: fix the file clone ioctl for preallocated extents
parent
f597bb19
Changes
1
Hide whitespace changes
Inline
Side-by-side
fs/btrfs/ioctl.c
View file @
c8a894d7
...
...
@@ -1028,7 +1028,8 @@ static long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
struct
btrfs_file_extent_item
);
comp
=
btrfs_file_extent_compression
(
leaf
,
extent
);
type
=
btrfs_file_extent_type
(
leaf
,
extent
);
if
(
type
==
BTRFS_FILE_EXTENT_REG
)
{
if
(
type
==
BTRFS_FILE_EXTENT_REG
||
type
==
BTRFS_FILE_EXTENT_PREALLOC
)
{
disko
=
btrfs_file_extent_disk_bytenr
(
leaf
,
extent
);
diskl
=
btrfs_file_extent_disk_num_bytes
(
leaf
,
...
...
@@ -1051,7 +1052,8 @@ static long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
new_key
.
objectid
=
inode
->
i_ino
;
new_key
.
offset
=
key
.
offset
+
destoff
-
off
;
if
(
type
==
BTRFS_FILE_EXTENT_REG
)
{
if
(
type
==
BTRFS_FILE_EXTENT_REG
||
type
==
BTRFS_FILE_EXTENT_PREALLOC
)
{
ret
=
btrfs_insert_empty_item
(
trans
,
root
,
path
,
&
new_key
,
size
);
if
(
ret
)
...
...
Write
Preview
Supports
Markdown
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