mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
6036e5e0f7
o roll vgcache back to agk's implementation, we'll revisit this as part of the cluster integration. o change the extra_info field in a label to be a void *
37 lines
630 B
C
37 lines
630 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"
|
|
|
|
struct vgname_entry {
|
|
struct list pvdevs;
|
|
char *vgname;
|
|
};
|
|
|
|
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);
|
|
|
|
/* Add/delete a device */
|
|
int vgcache_add(const char *vg_name, struct device *dev);
|
|
void vgcache_del(const char *vg_name);
|
|
|
|
#endif
|