* [PATCH] f2fs: add commit id to _fixed_by_kernel_commit
@ 2024-12-02 15:57 Chao Yu
2024-12-19 12:15 ` Zorro Lang
0 siblings, 1 reply; 2+ messages in thread
From: Chao Yu @ 2024-12-02 15:57 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
The bugs related to f2fs/00[5-7] regression testcases have been fixed
by below commits:
- d5c367ef8287 ("f2fs: fix f2fs_bug_on when uninstalling filesystem call
f2fs_evict_inode.")
- 1acd73edbbfe ("f2fs: fix to account dirty data in __get_secs_required()")
- 26413ce18e85 ("f2fs: compress: fix inconsistent update of i_blocks in
release_compress_blocks and reserve_compress_blocks")
Let's add commit id to _fixed_by_kernel_commit in f2fs/00[5-7].
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
tests/f2fs/005 | 2 +-
tests/f2fs/006 | 2 +-
tests/f2fs/007 | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/f2fs/005 b/tests/f2fs/005
index a817d51a..33d4fdb9 100755
--- a/tests/f2fs/005
+++ b/tests/f2fs/005
@@ -11,7 +11,7 @@
. ./common/preamble
_begin_fstest auto quick
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit d5c367ef8287 \
"f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode."
_require_scratch
diff --git a/tests/f2fs/006 b/tests/f2fs/006
index a9c823c1..c1f8d4ff 100755
--- a/tests/f2fs/006
+++ b/tests/f2fs/006
@@ -16,7 +16,7 @@
. ./common/preamble
_begin_fstest auto quick
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit 1acd73edbbfe \
"f2fs: fix to account dirty data in __get_secs_required()"
_require_scratch
diff --git a/tests/f2fs/007 b/tests/f2fs/007
index 6451d4b4..37388433 100755
--- a/tests/f2fs/007
+++ b/tests/f2fs/007
@@ -11,7 +11,7 @@
. ./common/preamble
_begin_fstest auto quick rw compress
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit 26413ce18e85 \
"f2fs: compress: fix inconsistent update of i_blocks in release_compress_blocks and reserve_compress_blocks"
_require_scratch
--
2.40.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] f2fs: add commit id to _fixed_by_kernel_commit
2024-12-02 15:57 [PATCH] f2fs: add commit id to _fixed_by_kernel_commit Chao Yu
@ 2024-12-19 12:15 ` Zorro Lang
0 siblings, 0 replies; 2+ messages in thread
From: Zorro Lang @ 2024-12-19 12:15 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Mon, Dec 02, 2024 at 11:57:27PM +0800, Chao Yu wrote:
> The bugs related to f2fs/00[5-7] regression testcases have been fixed
> by below commits:
>
> - d5c367ef8287 ("f2fs: fix f2fs_bug_on when uninstalling filesystem call
> f2fs_evict_inode.")
>
> - 1acd73edbbfe ("f2fs: fix to account dirty data in __get_secs_required()")
>
> - 26413ce18e85 ("f2fs: compress: fix inconsistent update of i_blocks in
> release_compress_blocks and reserve_compress_blocks")
>
> Let's add commit id to _fixed_by_kernel_commit in f2fs/00[5-7].
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
Reviewed-by: Zorro Lang <zlang@redhat.com>
> tests/f2fs/005 | 2 +-
> tests/f2fs/006 | 2 +-
> tests/f2fs/007 | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tests/f2fs/005 b/tests/f2fs/005
> index a817d51a..33d4fdb9 100755
> --- a/tests/f2fs/005
> +++ b/tests/f2fs/005
> @@ -11,7 +11,7 @@
> . ./common/preamble
> _begin_fstest auto quick
>
> -_fixed_by_kernel_commit xxxxxxxxxxxx \
> +_fixed_by_kernel_commit d5c367ef8287 \
> "f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode."
>
> _require_scratch
> diff --git a/tests/f2fs/006 b/tests/f2fs/006
> index a9c823c1..c1f8d4ff 100755
> --- a/tests/f2fs/006
> +++ b/tests/f2fs/006
> @@ -16,7 +16,7 @@
> . ./common/preamble
> _begin_fstest auto quick
>
> -_fixed_by_kernel_commit xxxxxxxxxxxx \
> +_fixed_by_kernel_commit 1acd73edbbfe \
> "f2fs: fix to account dirty data in __get_secs_required()"
>
> _require_scratch
> diff --git a/tests/f2fs/007 b/tests/f2fs/007
> index 6451d4b4..37388433 100755
> --- a/tests/f2fs/007
> +++ b/tests/f2fs/007
> @@ -11,7 +11,7 @@
> . ./common/preamble
> _begin_fstest auto quick rw compress
>
> -_fixed_by_kernel_commit xxxxxxxxxxxx \
> +_fixed_by_kernel_commit 26413ce18e85 \
> "f2fs: compress: fix inconsistent update of i_blocks in release_compress_blocks and reserve_compress_blocks"
>
> _require_scratch
> --
> 2.40.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-12-19 12:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-02 15:57 [PATCH] f2fs: add commit id to _fixed_by_kernel_commit Chao Yu
2024-12-19 12:15 ` Zorro Lang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox