aboutsummaryrefslogtreecommitdiff
path: root/drivers/of/unittest.c
diff options
context:
space:
mode:
authorGravatar Frank Rowand <frank.rowand@sony.com> 2022-08-23 15:01:52 -0500
committerGravatar Rob Herring <robh@kernel.org> 2022-08-25 13:59:08 -0500
commit59f9072f6e48e21d7c40fb0ca75d99f5f68abc04 (patch)
treec062fab40f2a58f3b6d227cfe63dd4d4f6dcf9a1 /drivers/of/unittest.c
parentdt-bindings: interrupt-controller: arm,gic: Support two address and size cells (diff)
downloadlinux-59f9072f6e48e21d7c40fb0ca75d99f5f68abc04.tar.gz
linux-59f9072f6e48e21d7c40fb0ca75d99f5f68abc04.tar.bz2
linux-59f9072f6e48e21d7c40fb0ca75d99f5f68abc04.zip
of: unittest: taint the kernel when of unittest runs
Make OF unittest trigger the new TAINT_TEST taint when OF unittest runs. Due to OF unittest not being intended to run on production systems, and potentially causing problems (or security issues like leaking kernel addresses), the kernel's state should not be considered safe for production use after OF unittest runs. Signed-off-by: Frank Rowand <frank.rowand@sony.com> Link: https://lore.kernel.org/r/20220823200152.3465751-1-frowand.list@gmail.com Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of/unittest.c')
-rw-r--r--drivers/of/unittest.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 6fa14b77086a..2b39470e82d4 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -3467,6 +3467,9 @@ static int __init of_unittest(void)
pr_info("start of unittest - you will see error messages\n");
+ /* Taint the kernel so we know we've run tests. */
+ add_taint(TAINT_TEST, LOCKDEP_STILL_OK);
+
/* adding data for unittest */
if (IS_ENABLED(CONFIG_UML))