RFR: 8305819: LogConfigurationTest intermittently fails on AArch64 [v2]
Dan Gao
duke at openjdk.org
Fri May 5 13:15:33 UTC 2023
> LogConfigurationTest*reconfigure*MT* crash intermittently on AArch64.
> According to the crash log and coredump, we found it crash as follows:
>
> void LogTagSet::log(LogLevelType level, const char* msg) {
> LogOutputList::Iterator it = _output_list.iterator(level);
> LogDecorations decorations(level, *this, _decorators);
>
> for (; it != _output_list.end(); it++) {
> (*it)->write(decorations, msg);//crash
> }
> }
>
> In the test, two threads write into the log while another thread dynamically changes the decorators and tags. During this time, the _output_list will be modified. Because of the relax memory model of aarch64, while adding LogOutputNode to LogOutputList, adding node to list and setting the value of node may be reordered, therefore the read thread may not read the correct value of the node's content. Consequently, storestore memory barrier is needed to ensure the order of writing.
> By the way, applying this patch may affect performance.
>
> How to reproduce on Linux aarch64:
> test case
>
> /* @test
> * @library /test/lib
> * @modules java.base/jdk.internal.misc
> * java.xml
> * @run main/native GTestWrapper --gtest_filter=LogConfigurationTest*reconfigure*MT*
> */
>
> Crash may occasionally occur after running continuously for 5000 times.
Dan Gao has updated the pull request incrementally with one additional commit since the last revision:
comment fixme
-------------
Changes:
- all: https://git.openjdk.org/jdk/pull/13421/files
- new: https://git.openjdk.org/jdk/pull/13421/files/36673ba3..e5480649
Webrevs:
- full: https://webrevs.openjdk.org/?repo=jdk&pr=13421&range=01
- incr: https://webrevs.openjdk.org/?repo=jdk&pr=13421&range=00-01
Stats: 2 lines in 1 file changed: 2 ins; 0 del; 0 mod
Patch: https://git.openjdk.org/jdk/pull/13421.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/13421/head:pull/13421
PR: https://git.openjdk.org/jdk/pull/13421
More information about the hotspot-runtime-dev
mailing list