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
7c4452b9
Commit
7c4452b9
authored
Apr 28, 2007
by
Chris Mason
Committed by
David Woodhouse
Apr 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Btrfs: smarter transaction writeback
Signed-off-by:
Chris Mason
<
chris.mason@oracle.com
>
parent
06a2f9fa
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
3 deletions
+37
-3
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+1
-0
fs/btrfs/super.c
fs/btrfs/super.c
+0
-1
fs/btrfs/transaction.c
fs/btrfs/transaction.c
+35
-2
fs/btrfs/transaction.h
fs/btrfs/transaction.h
+1
-0
No files found.
fs/btrfs/extent-tree.c
View file @
7c4452b9
...
...
@@ -762,6 +762,7 @@ struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
BUG_ON
(
ret
);
buf
=
btrfs_find_create_tree_block
(
root
,
ins
.
objectid
);
set_buffer_uptodate
(
buf
);
set_radix_bit
(
&
trans
->
transaction
->
dirty_pages
,
buf
->
b_page
->
index
);
return
buf
;
}
...
...
fs/btrfs/super.c
View file @
7c4452b9
...
...
@@ -980,7 +980,6 @@ static int btrfs_sync_fs(struct super_block *sb, int wait)
filemap_flush
(
root
->
fs_info
->
btree_inode
->
i_mapping
);
return
0
;
}
filemap_write_and_wait
(
root
->
fs_info
->
btree_inode
->
i_mapping
);
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
trans
=
btrfs_start_transaction
(
root
,
1
);
ret
=
btrfs_commit_transaction
(
trans
,
root
);
...
...
fs/btrfs/transaction.c
View file @
7c4452b9
...
...
@@ -45,6 +45,7 @@ static int join_transaction(struct btrfs_root *root)
cur_trans
->
use_count
=
1
;
cur_trans
->
commit_done
=
0
;
list_add_tail
(
&
cur_trans
->
list
,
&
root
->
fs_info
->
trans_list
);
init_bit_radix
(
&
cur_trans
->
dirty_pages
);
}
cur_trans
->
num_writers
++
;
return
0
;
...
...
@@ -106,8 +107,40 @@ int btrfs_end_transaction(struct btrfs_trans_handle *trans,
int
btrfs_write_and_wait_transaction
(
struct
btrfs_trans_handle
*
trans
,
struct
btrfs_root
*
root
)
{
filemap_write_and_wait
(
root
->
fs_info
->
btree_inode
->
i_mapping
);
return
0
;
unsigned
long
gang
[
16
];
int
ret
;
int
i
;
int
err
;
int
werr
=
0
;
struct
page
*
page
;
struct
radix_tree_root
*
dirty_pages
;
struct
inode
*
btree_inode
=
root
->
fs_info
->
btree_inode
;
if
(
!
trans
||
!
trans
->
transaction
)
{
return
filemap_write_and_wait
(
btree_inode
->
i_mapping
);
}
dirty_pages
=
&
trans
->
transaction
->
dirty_pages
;
while
(
1
)
{
ret
=
find_first_radix_bit
(
dirty_pages
,
gang
,
ARRAY_SIZE
(
gang
));
if
(
!
ret
)
break
;
for
(
i
=
0
;
i
<
ret
;
i
++
)
{
/* FIXME EIO */
clear_radix_bit
(
dirty_pages
,
gang
[
i
]);
page
=
find_lock_page
(
btree_inode
->
i_mapping
,
gang
[
i
]);
if
(
!
page
)
continue
;
err
=
write_one_page
(
page
,
0
);
if
(
err
)
werr
=
err
;
page_cache_release
(
page
);
}
}
err
=
filemap_fdatawait
(
btree_inode
->
i_mapping
);
if
(
err
)
werr
=
err
;
return
werr
;
}
int
btrfs_commit_tree_roots
(
struct
btrfs_trans_handle
*
trans
,
...
...
fs/btrfs/transaction.h
View file @
7c4452b9
...
...
@@ -9,6 +9,7 @@ struct btrfs_transaction {
int
commit_done
;
int
magic
;
struct
list_head
list
;
struct
radix_tree_root
dirty_pages
;
wait_queue_head_t
writer_wait
;
wait_queue_head_t
commit_wait
;
};
...
...
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