Version 2.02.44 -
====================================
+ Don't skip updating pvid hash when lvmcache_info struct got swapped.
Add tinfo to termcap search path for pld-linux.
Fix startup race in clvmd.
Generate Red Hat clvmd startup script at configuration time with correct paths.
static int _lvmcache_update_pvid(struct lvmcache_info *info, const char *pvid)
{
- if (!strcmp(info->dev->pvid, pvid))
+ /*
+ * Nothing to do if already stored with same pvid.
+ */
+ if (((dm_hash_lookup(_pvid_hash, pvid)) == info) &&
+ !strcmp(info->dev->pvid, pvid))
return 1;
if (*info->dev->pvid) {
dm_hash_remove(_pvid_hash, info->dev->pvid);