]> www.infradead.org Git - users/dwmw2/qemu.git/commit
block-copy: Fix missing graph lock
authorKevin Wolf <kwolf@redhat.com>
Thu, 27 Jun 2024 18:12:44 +0000 (20:12 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 6 Aug 2024 18:12:39 +0000 (20:12 +0200)
commitd5f6cbb263662af585b866481382c3f5ba5cd638
tree948bd5a3b739d67377bd32e45d8d2ad69d481046
parentf0e0c46309dac41a8420bcb379b1cffa7da0f62c
block-copy: Fix missing graph lock

The graph lock needs to be held when calling bdrv_co_pdiscard(). Fix
block_copy_task_entry() to take it for the call.

WITH_GRAPH_RDLOCK_GUARD() was implemented in a weak way because of
limitations in clang's Thread Safety Analysis at the time, so that it
only asserts that the lock is held (which allows calling functions that
require the lock), but we never deal with the unlocking (so even after
the scope of the guard, the compiler assumes that the lock is still
held). This is why the compiler didn't catch this locking error.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-ID: <20240627181245.281403-2-kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/block-copy.c