]> git.proxmox.com Git - mirror_qemu.git/commitdiff
nbd: fix assert() on qemu-nbd stop
authorPavel Butsykin <pbutsykin@virtuozzo.com>
Thu, 14 Apr 2016 10:20:15 +0000 (13:20 +0300)
committerMax Reitz <mreitz@redhat.com>
Fri, 15 Apr 2016 15:56:56 +0000 (17:56 +0200)
From time to time qemu-nbd is crashing on the following assert:
    assert(state == TERMINATING);
    nbd_export_closed
    nbd_export_put
    main
and the state at the moment of the crash is evaluated to TERMINATE.

During shutdown process of the client the nbd_client_thread thread sends
SIGTERM signal and the main thread calls the nbd_client_closed callback.
If the SIGTERM callback will be executed after change the state to
TERMINATING, then the state will once again be TERMINATE.

To solve the issue, we must change the state to TERMINATE only if the state
is RUNNING. In the other case we are shutting down already.

Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1460629215-11567-1-git-send-email-den@openvz.org
Signed-off-by: Max Reitz <mreitz@redhat.com>
qemu-nbd.c

index b5751f853b203c6170daa2cfd68c96b808e8f73c..2c9754e5d687fce447dd0e4db7b247c80c7fa3f2 100644 (file)
@@ -215,7 +215,7 @@ static int find_partition(BlockBackend *blk, int partition,
 
 static void termsig_handler(int signum)
 {
-    state = TERMINATE;
+    atomic_cmpxchg(&state, RUNNING, TERMINATE);
     qemu_notify_event();
 }