1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-02-01 09:47:48 +03:00
lvm2/lib/format_text/format-text.h

55 lines
1.5 KiB
C
Raw Normal View History

2001-11-21 09:20:05 +00:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the LGPL.
*/
#ifndef _LVM_FORMAT_TEXT_H
#define _LVM_FORMAT_TEXT_H
2001-12-20 11:52:54 +00:00
#include "lvm-types.h"
#include "metadata.h"
2002-11-18 14:04:08 +00:00
#include "pool.h"
#define FMT_TEXT_NAME "lvm2"
#define FMT_TEXT_ALIAS "text"
2001-12-20 11:52:54 +00:00
2002-01-07 09:05:31 +00:00
/*
* Archives a vg config. 'retain_days' is the minimum number of
* days that an archive file must be held for. 'min_archives' is
* the minimum number of archives required to be kept for each
* volume group.
2002-01-07 09:05:31 +00:00
*/
int archive_vg(struct volume_group *vg,
const char *dir,
2002-11-18 14:04:08 +00:00
const char *desc, uint32_t retain_days, uint32_t min_archive);
2001-12-17 19:46:10 +00:00
/*
* Displays a list of vg backups in a particular archive directory.
*/
2002-11-18 14:04:08 +00:00
int archive_list(struct cmd_context *cmd, const char *dir, const char *vg);
2001-11-21 09:20:05 +00:00
2002-01-07 09:05:31 +00:00
/*
* The text format can read and write a volume_group to a file.
*/
struct format_type *create_text_format(struct cmd_context *cmd);
2002-11-18 14:04:08 +00:00
void *create_text_context(struct cmd_context *cmd, const char *path,
const char *desc);
2002-01-07 09:05:31 +00:00
struct labeller *text_labeller_create(const struct format_type *fmt);
2002-11-18 14:04:08 +00:00
int pvhdr_read(struct device *dev, char *buf);
int add_da(const struct format_type *fmt, struct pool *mem, struct list *das,
2002-11-18 14:04:08 +00:00
uint64_t start, uint64_t size);
void del_das(struct list *das);
int add_mda(const struct format_type *fmt, struct pool *mem, struct list *mdas,
2002-11-18 14:04:08 +00:00
struct device *dev, uint64_t start, uint64_t size);
void del_mdas(struct list *mdas);
int vgname_from_mda(const struct format_type *fmt, struct device_area *dev_area,
2002-11-18 14:04:08 +00:00
char *buf, uint32_t size);
2001-11-21 09:20:05 +00:00
#endif