mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
15c325f06a
from lock_vol() - otherwise it now attempts to acquire the lock and then immediately releases it. o Extend the id field in struct logical_volume to hold VG uuid + LV uuid for format1. This unique lvid can be used directly when calling lock_vol(). o Add the VG uuid to vgcache to make VG uuid lookups possible. (Another step towards using them instead of VG names internally.)
44 lines
866 B
C
44 lines
866 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*
|
|
*/
|
|
|
|
#ifndef _LVM_VGCACHE_H
|
|
#define _LVM_VGCACHE_H
|
|
|
|
#include <sys/types.h>
|
|
#include <asm/page.h>
|
|
#include "dev-cache.h"
|
|
#include "list.h"
|
|
#include "uuid.h"
|
|
#include "toolcontext.h"
|
|
|
|
struct vgname_entry {
|
|
struct list pvdevs;
|
|
char *vgname;
|
|
char vgid[ID_LEN + 1];
|
|
};
|
|
|
|
struct pvdev_list {
|
|
struct list list;
|
|
struct device *dev;
|
|
};
|
|
|
|
int vgcache_init();
|
|
void vgcache_destroy();
|
|
|
|
/* Return list of PVs in named VG */
|
|
struct list *vgcache_find(const char *vg_name);
|
|
struct list *vgcache_find_by_vgid(const char *vgid);
|
|
|
|
/* FIXME Temporary function */
|
|
char *vgname_from_vgid(struct cmd_context *cmd, struct id *vgid);
|
|
|
|
/* Add/delete a device */
|
|
int vgcache_add(const char *vg_name, const char *vgid, struct device *dev);
|
|
void vgcache_del(const char *vg_name);
|
|
|
|
#endif
|