Re: [PATCH] kunit: run test suites only after module initialization completes

2023-10-18 Thread kernel test robot
rnel.org/r/20231016203548.21993-1-marpagan%40redhat.com patch subject: [PATCH] kunit: run test suites only after module initialization completes config: arm-randconfig-004-20231019 (https://download.01.org/0day-ci/archive/20231019/202310190514.ukp3bs5q-...@intel.com/config) compiler: arm-linux-gnueabi-gcc (G

Re: [PATCH] kunit: run test suites only after module initialization completes

2023-10-18 Thread kernel test robot
rnel.org/r/20231016203548.21993-1-marpagan%40redhat.com patch subject: [PATCH] kunit: run test suites only after module initialization completes config: csky-randconfig-002-20231018 (https://download.01.org/0day-ci/archive/20231018/202310181220.us7bvp16-...@intel.com/config) compiler: csky-linux-gcc (GCC) 13.2.0

Re: [PATCH] kunit: run test suites only after module initialization completes

2023-10-17 Thread Marco Pagani
On 2023-10-17 03:28, Jinjie Ruan wrote: > > > On 2023/10/17 4:35, Marco Pagani wrote: >> Commit 2810c1e99867 ("kunit: Fix wild-memory-access bug in >> kunit_free_suite_set()") is causing all test suites to run (when >> built as modules) while still in MODULE_STATE_COMING. In that state, >> tes

Re: [PATCH] kunit: run test suites only after module initialization completes

2023-10-16 Thread Jinjie Ruan
On 2023/10/17 4:35, Marco Pagani wrote: > Commit 2810c1e99867 ("kunit: Fix wild-memory-access bug in > kunit_free_suite_set()") is causing all test suites to run (when > built as modules) while still in MODULE_STATE_COMING. In that state, > test modules are not fully initialized and lack sysfs k

[PATCH] kunit: run test suites only after module initialization completes

2023-10-16 Thread Marco Pagani
Commit 2810c1e99867 ("kunit: Fix wild-memory-access bug in kunit_free_suite_set()") is causing all test suites to run (when built as modules) while still in MODULE_STATE_COMING. In that state, test modules are not fully initialized and lack sysfs kobjects. This behavior can cause a crash if the tes

[RFC PATCH] kunit: run test suites only after module initialization completes

2023-09-27 Thread Marco Pagani
Commit 2810c1e99867 ("kunit: Fix wild-memory-access bug in kunit_free_suite_set()") causes test suites to run while the test module is still in MODULE_STATE_COMING. In that state, the module is not fully initialized, lacking sysfs, module_memory, args, init function. This behavior can cause all sor