mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
e0e7fb8418
This patch update pv_t handle to be consistent with lvm_t - define as a pointer to internal struct physical_volume. Author: Dave Wysochanski <dwysocha@redhat.com>
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2008,2009 Red Hat, Inc. All rights reserved.
|
|
*
|
|
* This file is part of LVM2.
|
|
*
|
|
* This copyrighted material is made available to anyone wishing to use,
|
|
* modify, copy, or redistribute it subject to the terms and conditions
|
|
* of the GNU Lesser General Public License v.2.1.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "lib.h"
|
|
#include "lvm2app.h"
|
|
#include "metadata-exported.h"
|
|
#include "lvm-string.h"
|
|
|
|
char *lvm_pv_get_uuid(const pv_t pv)
|
|
{
|
|
char uuid[64] __attribute((aligned(8)));
|
|
|
|
if (!id_write_format(&pv->id, uuid, sizeof(uuid))) {
|
|
log_error("Internal error converting uuid");
|
|
return NULL;
|
|
}
|
|
return strndup((const char *)uuid, 64);
|
|
}
|
|
|
|
char *lvm_pv_get_name(const pv_t pv)
|
|
{
|
|
char *name;
|
|
|
|
name = dm_malloc(NAME_LEN + 1);
|
|
strncpy(name, (const char *)pv_dev_name(pv), NAME_LEN);
|
|
name[NAME_LEN] = '\0';
|
|
return name;
|
|
}
|
|
|
|
uint64_t lvm_pv_get_mda_count(const pv_t pv)
|
|
{
|
|
return (uint64_t) pv_mda_count(pv);
|
|
}
|
|
|
|
int lvm_pv_resize(const pv_t pv, uint64_t new_size)
|
|
{
|
|
/* FIXME: add pv resize code here */
|
|
log_error("NOT IMPLEMENTED YET");
|
|
return -1;
|
|
}
|