diff options
author | Simona Vetter <simona.vetter@ffwll.ch> | 2025-01-23 16:39:49 +0300 |
---|---|---|
committer | Simona Vetter <simona.vetter@ffwll.ch> | 2025-01-23 16:42:21 +0300 |
commit | 07c5b277208cf9a9e9cf31bf0143977d7f030aa1 (patch) | |
tree | 8c30e64d4b9bbb433e50785fb40860ee5c46a4eb /fs/jbd2/commit.c | |
parent | 951a6bf30667307e7901aac5e74e50dadd5ccfc7 (diff) | |
parent | ffd294d346d185b70e28b1a28abe367bbfe53c04 (diff) | |
download | linux-07c5b277208cf9a9e9cf31bf0143977d7f030aa1.tar.xz |
Merge v6.13 into drm-next
A regression was caused by commit e4b5ccd392b9 ("drm/v3d: Ensure job
pointer is set to NULL after job completion"), but this commit is not
yet in next-fixes, fast-forward it.
Note that this recreates Linus merge in 96c84703f1cf ("Merge tag
'drm-next-2025-01-17' of https://gitlab.freedesktop.org/drm/kernel")
because I didn't want to backmerge a random point in the merge window.
Signed-off-by: Simona Vetter <simona.vetter@ffwll.ch>
Diffstat (limited to 'fs/jbd2/commit.c')
-rw-r--r-- | fs/jbd2/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 9153ff3a08e7..e8e80761ac73 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c @@ -772,9 +772,9 @@ start_journal_io: /* * If the journal is not located on the file system device, * then we must flush the file system device before we issue - * the commit record + * the commit record and update the journal tail sequence. */ - if (commit_transaction->t_need_data_flush && + if ((commit_transaction->t_need_data_flush || update_tail) && (journal->j_fs_dev != journal->j_dev) && (journal->j_flags & JBD2_BARRIER)) blkdev_issue_flush(journal->j_fs_dev); |