mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-04 09:18:36 +03:00
21 lines
413 B
C
21 lines
413 B
C
|
/*
|
||
|
* Copyright (C) 2001 Sistina Software
|
||
|
*
|
||
|
* This file is released under the LGPL.
|
||
|
*/
|
||
|
|
||
|
#ifndef _LVM_MERGE_H
|
||
|
#define _LVM_MERGE_H
|
||
|
|
||
|
#include "metadata.h"
|
||
|
|
||
|
/*
|
||
|
* Sometimes (eg, after an lvextend), it is
|
||
|
* possible to merge two adjacent segments into a
|
||
|
* single segment. This function trys to merge as
|
||
|
* many segments as possible.
|
||
|
*/
|
||
|
int merge_segments(struct logical_volume *lv);
|
||
|
|
||
|
#endif /* _LVM_MERGE_H */
|