mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
25b733809a
Lots of changes/very little testing so far => there'll be bugs! Use 'vgcreate -M text' to create a volume group with its metadata stored in text files. Text format metadata changes should be reasonably atomic, with a (basic) automatic recovery mechanism if the system crashes while a change is in progress. Add a metadata section to lvm.conf to specify multiple directories if you want (recommended) to keep multiple copies of the metadata (eg on different filesystems). e.g. metadata { dirs = ["/etc/lvm/metadata1","/usr/local/lvm/metadata2"] } Plenty of refinements still in the pipeline.
71 lines
1.2 KiB
C
71 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#include "filter-composite.h"
|
|
#include "dbg_malloc.h"
|
|
#include "log.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
static int _and_p(struct dev_filter *f, struct device *dev)
|
|
{
|
|
struct dev_filter **filters = (struct dev_filter **) f->private;
|
|
|
|
while (*filters) {
|
|
if (!(*filters)->passes_filter(*filters, dev))
|
|
return 0;
|
|
filters++;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static void _destroy(struct dev_filter *f)
|
|
{
|
|
struct dev_filter **filters = (struct dev_filter **) f->private;
|
|
|
|
while (*filters) {
|
|
(*filters)->destroy(*filters);
|
|
filters++;
|
|
}
|
|
|
|
dbg_free(f->private);
|
|
dbg_free(f);
|
|
}
|
|
|
|
struct dev_filter *composite_filter_create(int n, ...)
|
|
{
|
|
struct dev_filter **filters = dbg_malloc(sizeof(*filters) * (n + 1));
|
|
struct dev_filter *cf;
|
|
va_list ap;
|
|
int i;
|
|
|
|
if (!filters) {
|
|
stack;
|
|
return NULL;
|
|
}
|
|
|
|
if (!(cf = dbg_malloc(sizeof(*cf)))) {
|
|
stack;
|
|
dbg_free(filters);
|
|
return NULL;
|
|
}
|
|
|
|
va_start(ap, n);
|
|
for (i = 0; i < n; i++) {
|
|
struct dev_filter *f = va_arg(ap, struct dev_filter *);
|
|
filters[i] = f;
|
|
}
|
|
filters[i] = NULL;
|
|
va_end(ap);
|
|
|
|
cf->passes_filter = _and_p;
|
|
cf->destroy = _destroy;
|
|
cf->private = filters;
|
|
|
|
return cf;
|
|
}
|