mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +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.
34 lines
704 B
C
34 lines
704 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#ifndef _LVM_TEXT_IMPORT_EXPORT_H
|
|
#define _LVM_TEXT_IMPORT_EXPORT_H
|
|
|
|
#include "config.h"
|
|
#include "lvm-types.h"
|
|
#include "metadata.h"
|
|
#include "uuid-map.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
enum {
|
|
VG_FLAGS,
|
|
PV_FLAGS,
|
|
LV_FLAGS
|
|
};
|
|
|
|
int print_flags(uint32_t status, int type, char *buffer, size_t size);
|
|
int read_flags(uint32_t *status, int type, struct config_value *cv);
|
|
|
|
|
|
int text_vg_export(FILE *fp, struct volume_group *vg, const char *desc);
|
|
struct volume_group *text_vg_import(struct format_instance *fid,
|
|
const char *file,
|
|
struct uuid_map *um,
|
|
time_t *when, char **desc);
|
|
|
|
#endif
|