From: Song Chen <chensong_2000@126.com>
To: arnd@arndb.de, kees@kernel.org, clm@fb.com, dsterba@suse.com
Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org,
Song Chen <chensong_2000@126.com>
Subject: [PATCH 1/2] error-injection: Introduce EI_ETYPE_FALSE for fail_function
Date: Thu, 2 Jul 2026 10:36:37 +0800 [thread overview]
Message-ID: <20260702023638.8165-2-chensong_2000@126.com> (raw)
In-Reply-To: <20260702023638.8165-1-chensong_2000@126.com>
Introduce EI_ETYPE_FALSE for functions which need false as return
value in their error-injections, like btrfs_data_csum_ok.
EI_ETYPE_NULL can return 0 too but its readability is not good
enough.
Signed-off-by: Song Chen <chensong_2000@126.com>
---
include/asm-generic/error-injection.h | 1 +
kernel/fail_function.c | 2 ++
2 files changed, 3 insertions(+)
diff --git a/include/asm-generic/error-injection.h b/include/asm-generic/error-injection.h
index b05253f68eaa..6c399121ab7a 100644
--- a/include/asm-generic/error-injection.h
+++ b/include/asm-generic/error-injection.h
@@ -8,6 +8,7 @@ enum {
EI_ETYPE_ERRNO, /* Return -ERRNO if failure */
EI_ETYPE_ERRNO_NULL, /* Return -ERRNO or NULL if failure */
EI_ETYPE_TRUE, /* Return true if failure */
+ EI_ETYPE_FALSE, /* Return false if failure */
};
struct error_injection_entry {
diff --git a/kernel/fail_function.c b/kernel/fail_function.c
index 2eaf55005f49..90cdad0412cd 100644
--- a/kernel/fail_function.c
+++ b/kernel/fail_function.c
@@ -48,6 +48,8 @@ static unsigned long adjust_error_retval(unsigned long addr, unsigned long retv)
break;
case EI_ETYPE_TRUE:
return 1;
+ case EI_ETYPE_FALSE:
+ return 0;
}
return retv;
--
2.43.0
next prev parent reply other threads:[~2026-07-02 2:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-02 2:36 [PATCH 0/2] btrfs: add error injection support for checksum verification Song Chen
2026-07-02 2:36 ` Song Chen [this message]
2026-07-02 2:36 ` [PATCH 2/2] btrfs: Allow error injection on btrfs_data_csum_ok Song Chen
2026-07-13 1:00 ` [PATCH 0/2] btrfs: add error injection support for checksum verification Song Chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260702023638.8165-2-chensong_2000@126.com \
--to=chensong_2000@126.com \
--cc=arnd@arndb.de \
--cc=clm@fb.com \
--cc=dsterba@suse.com \
--cc=kees@kernel.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox