]> sourceware.org Git - lvm2.git/commitdiff
cleanup: WHATS_NEW + compiler warning about discarding const
authorPeter Rajnoha <prajnoha@redhat.com>
Thu, 10 Oct 2013 07:07:42 +0000 (09:07 +0200)
committerPeter Rajnoha <prajnoha@redhat.com>
Thu, 10 Oct 2013 07:09:16 +0000 (09:09 +0200)
WHATS_NEW
daemons/lvmetad/lvmetad-core.c

index a87a906e8dec4d97677d337d760bce0bfdd1ca45..d0ed2ceda35f110243e7f4a6d8d5d2acaaee84ed 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,8 @@
 Version 2.02.104
 ===================================
+  Fix possible race during daemon worker thread creation (lvmetad).
+  Fix possible deadlock while clearing lvmetad cache for full rescan.
+  Fix possible race while creating/destroying memory pools.
   Recognise NVM Express devices in filter.
   Fix failing metadata repair when lvmetad is used.
   Fix incorrect memory handling when reading messages from lvmetad.
index 5a841e00a014f245ab149df351283a8fa04417c0..285c8ccaaf71beffe6bc1140c42c418b79471a78 100644 (file)
@@ -796,7 +796,7 @@ static response pv_gone(lvmetad_state *s, request r)
 
        pvmeta = dm_hash_lookup(s->pvid_to_pvmeta, pvid);
        pvid_old = dm_hash_lookup_binary(s->device_to_pvid, &device, sizeof(device));
-       const char *vgid = dm_hash_lookup(s->pvid_to_vgid, pvid);
+       char *vgid = dm_hash_lookup(s->pvid_to_vgid, pvid);
 
        if (vgid && !(vgid = dm_strdup(vgid))) {
                unlock_pvid_to_pvmeta(s);
This page took 0.054141 seconds and 5 git commands to generate.