mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
revert unnecessary 'stack's
This commit is contained in:
parent
df9c7546a2
commit
91e9ae2629
@ -194,7 +194,7 @@ int munge_pvd(struct device *dev, struct pv_disk *pvd)
|
|||||||
if (!_munge_formats(pvd)) {
|
if (!_munge_formats(pvd)) {
|
||||||
log_very_verbose("format1: Unknown metadata version %d "
|
log_very_verbose("format1: Unknown metadata version %d "
|
||||||
"found on %s", pvd->version, dev_name(dev));
|
"found on %s", pvd->version, dev_name(dev));
|
||||||
return_0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If VG is exported, set VG name back to the real name */
|
/* If VG is exported, set VG name back to the real name */
|
||||||
@ -208,7 +208,7 @@ static int _read_pvd(struct device *dev, struct pv_disk *pvd)
|
|||||||
if (!dev_read(dev, UINT64_C(0), sizeof(*pvd), pvd)) {
|
if (!dev_read(dev, UINT64_C(0), sizeof(*pvd), pvd)) {
|
||||||
log_very_verbose("Failed to read PV data from %s",
|
log_very_verbose("Failed to read PV data from %s",
|
||||||
dev_name(dev));
|
dev_name(dev));
|
||||||
return_0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return munge_pvd(dev, pvd);
|
return munge_pvd(dev, pvd);
|
||||||
|
@ -119,7 +119,7 @@ static struct labeller *_find_labeller(struct device *dev, char *buf,
|
|||||||
if (!dev_read(dev, scan_sector << SECTOR_SHIFT,
|
if (!dev_read(dev, scan_sector << SECTOR_SHIFT,
|
||||||
LABEL_SCAN_SIZE, readbuf)) {
|
LABEL_SCAN_SIZE, readbuf)) {
|
||||||
log_debug("%s: Failed to read label area", dev_name(dev));
|
log_debug("%s: Failed to read label area", dev_name(dev));
|
||||||
goto_out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scan a few sectors for a valid label */
|
/* Scan a few sectors for a valid label */
|
||||||
|
Loading…
Reference in New Issue
Block a user