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
6409c6a0
Commit
6409c6a0
authored
Feb 28, 2019
by
Kent Overstreet
Committed by
Kent Overstreet
Oct 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcachefs: use correct wq for journal reclaim
Signed-off-by:
Kent Overstreet
<
kent.overstreet@linux.dev
>
parent
e5a66496
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fs/bcachefs/journal.c
fs/bcachefs/journal.c
+1
-1
fs/bcachefs/journal_io.c
fs/bcachefs/journal_io.c
+1
-1
No files found.
fs/bcachefs/journal.c
View file @
6409c6a0
...
...
@@ -971,7 +971,7 @@ void bch2_fs_journal_start(struct journal *j)
*/
bch2_journal_seq_blacklist_write
(
j
);
queue_delayed_work
(
system_freezable
_wq
,
&
j
->
reclaim_work
,
0
);
queue_delayed_work
(
c
->
journal_reclaim
_wq
,
&
j
->
reclaim_work
,
0
);
}
/* init/exit: */
...
...
fs/bcachefs/journal_io.c
View file @
6409c6a0
...
...
@@ -1082,7 +1082,7 @@ static void journal_write_done(struct closure *cl)
* Must come before signaling write completion, for
* bch2_fs_journal_stop():
*/
mod_delayed_work
(
system_freezable
_wq
,
&
j
->
reclaim_work
,
0
);
mod_delayed_work
(
c
->
journal_reclaim
_wq
,
&
j
->
reclaim_work
,
0
);
out:
/* also must come before signalling write completion: */
closure_debug_destroy
(
cl
);
...
...
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