1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-26 14:04:15 +03:00

Cleanup comment and some whitespace.

This commit is contained in:
Dave Wysochanski 2009-10-06 16:00:38 +00:00
parent 4257485ff2
commit 3bb0dc03af
2 changed files with 9 additions and 8 deletions

View File

@ -67,7 +67,7 @@ unsigned long set_pe_align(struct physical_volume *pv, unsigned long data_alignm
if (data_alignment)
pv->pe_align = data_alignment;
else
else
pv->pe_align = MAX(65536UL, lvm_getpagesize()) >> SECTOR_SHIFT;
if (!pv->dev)
@ -1292,18 +1292,19 @@ void fill_default_pvcreate_params(struct pvcreate_params *pp)
}
/*
* pvcreate_single() - initialize a device with PV label and metadata
* pvcreate_single() - initialize a device with PV label and metadata area
*
* Parameters:
* - pv_name: device path to initialize
* - handle: options to pass to pv_create; NULL indicates use defaults
* - pp: parameters to pass to pv_create; if NULL, use default values
*
* Returns:
* NULL: error
* struct physical_volume * (non-NULL): handle to physical volume created
*/
struct physical_volume * pvcreate_single(struct cmd_context *cmd, const char *pv_name,
struct pvcreate_params *pp)
struct physical_volume * pvcreate_single(struct cmd_context *cmd,
const char *pv_name,
struct pvcreate_params *pp)
{
void *pv;
struct device *dev;

View File

@ -1021,7 +1021,7 @@ static int _create_pv_entry(struct dm_pool *mem, struct pv_list *pvl,
new_pvl = pvl2;
break;
}
if (!new_pvl) {
if (!(new_pvl = dm_pool_alloc(mem, sizeof(*new_pvl)))) {
log_error("Unable to allocate physical volume list.");
@ -1239,12 +1239,12 @@ int vg_refresh_visible(struct cmd_context *cmd, struct volume_group *vg)
{
struct lv_list *lvl;
int r = 1;
dm_list_iterate_items(lvl, &vg->lvs)
if (lv_is_visible(lvl->lv))
if (!lv_refresh(cmd, lvl->lv))
r = 0;
return r;
}