Re: [PATCH] Fix a data race with goflag in rcutorture test

2025-01-23 Thread Paolo Bonzini
On Wed, Jan 22, 2025 at 2:59 PM Vitalii Mordan wrote: > > This patch addresses a potential data race involving the global variable > goflag in the rcutorture test. The issue is resolved by adding the atomic > qualifier to ensure proper synchronization. Hello! QEMU does not use _Atomic; in genera

[PATCH] Fix a data race with goflag in rcutorture test

2025-01-22 Thread Vitalii Mordan
This patch addresses a potential data race involving the global variable goflag in the rcutorture test. The issue is resolved by adding the atomic qualifier to ensure proper synchronization. Fixes: 8fda74a52b ("rcu: add rcutorture") Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2750 Sign

[PATCH] Fix a data race with goflag in rcutorture test

2025-01-09 Thread Vitalii Mordan
This patch addresses a potential data race involving the global variable goflag in the rcutorture test. The issue is resolved by adding the atomic qualifier to ensure proper synchronization. Fixes: 8fda74a52b ("rcu: add rcutorture") Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2750 Sign