From e636c8d336489bf3eed5878299e6cc045bbad077 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Tue, 20 Feb 2024 01:17:29 +0000 Subject: [PATCH] debug lk --- kernel/drivers/gpu/arm/bifrost/tests/include/kutf/kutf_suite.h | 45 +++++++++++++++++++++++---------------------- 1 files changed, 23 insertions(+), 22 deletions(-) diff --git a/kernel/drivers/gpu/arm/bifrost/tests/include/kutf/kutf_suite.h b/kernel/drivers/gpu/arm/bifrost/tests/include/kutf/kutf_suite.h index b9c333b..9e459c5 100644 --- a/kernel/drivers/gpu/arm/bifrost/tests/include/kutf/kutf_suite.h +++ b/kernel/drivers/gpu/arm/bifrost/tests/include/kutf/kutf_suite.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * - * (C) COPYRIGHT 2014, 2017, 2020-2021 ARM Limited. All rights reserved. + * (C) COPYRIGHT 2014, 2017, 2020-2022 ARM Limited. All rights reserved. * * This program is free software and is provided to you under the terms of the * GNU General Public License version 2 as published by the Free Software @@ -43,36 +43,36 @@ #define KUTF_MAX_LINE_LENGTH (1024u) /** - * Pseudo-flag indicating an absence of any specified test class. Note that - * tests should not be annotated with this constant as it is simply a zero + * KUTF_F_TEST_NONE - Pseudo-flag indicating an absence of any specified test class. + * Note that tests should not be annotated with this constant as it is simply a zero * value; tests without a more specific class must be marked with the flag * KUTF_F_TEST_GENERIC. */ #define KUTF_F_TEST_NONE ((unsigned int)(0)) /** - * Class indicating this test is a smoke test. + * KUTF_F_TEST_SMOKETEST - Class indicating this test is a smoke test. * A given set of smoke tests should be quick to run, enabling rapid turn-around * of "regress-on-commit" test runs. */ #define KUTF_F_TEST_SMOKETEST ((unsigned int)(1 << 1)) /** - * Class indicating this test is a performance test. + * KUTF_F_TEST_PERFORMANCE - Class indicating this test is a performance test. * These tests typically produce a performance metric, such as "time to run" or * "frames per second", */ #define KUTF_F_TEST_PERFORMANCE ((unsigned int)(1 << 2)) /** - * Class indicating that this test is a deprecated test. + * KUTF_F_TEST_DEPRECATED - Class indicating that this test is a deprecated test. * These tests have typically been replaced by an alternative test which is * more efficient, or has better coverage. */ #define KUTF_F_TEST_DEPRECATED ((unsigned int)(1 << 3)) /** - * Class indicating that this test is a known failure. + * KUTF_F_TEST_EXPECTED_FAILURE - Class indicating that this test is a known failure. * These tests have typically been run and failed, but marking them as a known * failure means it is easier to triage results. * @@ -83,68 +83,69 @@ #define KUTF_F_TEST_EXPECTED_FAILURE ((unsigned int)(1 << 4)) /** - * Class indicating that this test is a generic test, which is not a member of - * a more specific test class. Tests which are not created with a specific set + * KUTF_F_TEST_GENERIC - Class indicating that this test is a generic test, + * which is not a member of a more specific test class. + * Tests which are not created with a specific set * of filter flags by the user are assigned this test class by default. */ #define KUTF_F_TEST_GENERIC ((unsigned int)(1 << 5)) /** - * Class indicating this test is a resource allocation failure test. + * KUTF_F_TEST_RESFAIL - Class indicating this test is a resource allocation failure test. * A resource allocation failure test will test that an error code is * correctly propagated when an allocation fails. */ #define KUTF_F_TEST_RESFAIL ((unsigned int)(1 << 6)) /** - * Additional flag indicating that this test is an expected failure when - * run in resource failure mode. These tests are never run when running - * the low resource mode. + * KUTF_F_TEST_EXPECTED_FAILURE_RF - Additional flag indicating that this test + * is an expected failure when run in resource failure mode. + * These tests are never run when running the low resource mode. */ #define KUTF_F_TEST_EXPECTED_FAILURE_RF ((unsigned int)(1 << 7)) /** - * Flag reserved for user-defined filter zero. + * KUTF_F_TEST_USER_0 - Flag reserved for user-defined filter zero. */ #define KUTF_F_TEST_USER_0 ((unsigned int)(1 << 24)) /** - * Flag reserved for user-defined filter one. + * KUTF_F_TEST_USER_1 - Flag reserved for user-defined filter one. */ #define KUTF_F_TEST_USER_1 ((unsigned int)(1 << 25)) /** - * Flag reserved for user-defined filter two. + * KUTF_F_TEST_USER_2 - Flag reserved for user-defined filter two. */ #define KUTF_F_TEST_USER_2 ((unsigned int)(1 << 26)) /** - * Flag reserved for user-defined filter three. + * KUTF_F_TEST_USER_3 - Flag reserved for user-defined filter three. */ #define KUTF_F_TEST_USER_3 ((unsigned int)(1 << 27)) /** - * Flag reserved for user-defined filter four. + * KUTF_F_TEST_USER_4 - Flag reserved for user-defined filter four. */ #define KUTF_F_TEST_USER_4 ((unsigned int)(1 << 28)) /** - * Flag reserved for user-defined filter five. + * KUTF_F_TEST_USER_5 - Flag reserved for user-defined filter five. */ #define KUTF_F_TEST_USER_5 ((unsigned int)(1 << 29)) /** - * Flag reserved for user-defined filter six. + * KUTF_F_TEST_USER_6 - Flag reserved for user-defined filter six. */ #define KUTF_F_TEST_USER_6 ((unsigned int)(1 << 30)) /** - * Flag reserved for user-defined filter seven. + * KUTF_F_TEST_USER_7 - Flag reserved for user-defined filter seven. */ #define KUTF_F_TEST_USER_7 ((unsigned int)(1 << 31)) /** - * Pseudo-flag indicating that all test classes should be executed. + * KUTF_F_TEST_ALL - Pseudo-flag indicating that all test classes should be executed. */ #define KUTF_F_TEST_ALL ((unsigned int)(0xFFFFFFFFU)) -- Gitblit v1.6.2