2001-10-09 20:05:34 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2018-02-27 16:13:00 +03:00
* Copyright ( C ) 2004 - 2018 Red Hat , Inc . All rights reserved .
2001-10-09 20:05:34 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 23:35:44 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-09 20:05:34 +04:00
*/
2001-10-16 20:25:28 +04:00
# ifndef LVM_ACTIVATE_H
# define LVM_ACTIVATE_H
2001-10-09 20:05:34 +04:00
2018-05-14 12:30:20 +03:00
# include "lib/metadata/metadata-exported.h"
2003-01-09 01:44:07 +03:00
struct lvinfo {
int exists ;
int suspended ;
unsigned int open_count ;
int major ;
int minor ;
int read_only ;
2005-11-09 01:52:26 +03:00
int live_table ;
int inactive_table ;
2007-11-12 23:51:54 +03:00
uint32_t read_ahead ;
2003-01-09 01:44:07 +03:00
} ;
2001-11-21 22:32:35 +03:00
2014-10-20 15:46:50 +04:00
typedef enum {
SEG_STATUS_NONE ,
SEG_STATUS_CACHE ,
SEG_STATUS_RAID ,
SEG_STATUS_SNAPSHOT ,
SEG_STATUS_THIN ,
2015-01-20 14:38:38 +03:00
SEG_STATUS_THIN_POOL ,
2018-07-02 18:20:30 +03:00
SEG_STATUS_VDO_POOL ,
2018-08-27 22:53:09 +03:00
SEG_STATUS_WRITECACHE ,
2015-01-20 14:38:38 +03:00
SEG_STATUS_UNKNOWN
2014-10-20 15:46:50 +04:00
} lv_seg_status_type_t ;
struct lv_seg_status {
struct dm_pool * mem ; /* input */
2015-01-14 12:31:24 +03:00
const struct lv_segment * seg ; /* input */
2014-10-20 15:46:50 +04:00
lv_seg_status_type_t type ; /* output */
2015-01-20 15:14:16 +03:00
union {
struct dm_status_cache * cache ;
struct dm_status_raid * raid ;
struct dm_status_snapshot * snapshot ;
struct dm_status_thin * thin ;
struct dm_status_thin_pool * thin_pool ;
2018-08-27 22:53:09 +03:00
struct dm_status_writecache * writecache ;
2018-07-02 18:20:30 +03:00
struct lv_status_vdo vdo_pool ;
2015-01-20 15:14:16 +03:00
} ;
2014-10-20 15:46:50 +04:00
} ;
struct lv_with_info_and_seg_status {
2015-01-20 14:38:38 +03:00
int info_ok ;
2016-12-05 16:31:25 +03:00
const struct logical_volume * lv ; /* output */
2015-01-14 12:31:24 +03:00
struct lvinfo info ; /* output */
2014-10-20 15:46:50 +04:00
int seg_part_of_lv ; /* output */
2016-12-05 16:31:25 +03:00
struct lv_seg_status seg_status ; /* output, see lv_seg_status */
/* TODO: add extra status for snapshot origin */
2014-10-20 15:46:50 +04:00
} ;
2011-06-17 18:14:19 +04:00
struct lv_activate_opts {
int exclusive ;
int origin_only ;
int no_merging ;
2013-01-17 13:35:27 +04:00
int send_messages ;
2012-03-23 13:58:04 +04:00
int skip_in_use ;
2011-09-28 02:43:40 +04:00
unsigned revert ;
2012-01-12 05:51:56 +04:00
unsigned read_only ;
activation: flag temporary LVs internally
Add LV_TEMPORARY flag for LVs with limited existence during command
execution. Such LVs are temporary in way that they need to be activated,
some action done and then removed immediately. Such LVs are just like
any normal LV - the only difference is that they are removed during
LVM command execution. This is also the case for LVs representing
future pool metadata spare LVs which we need to initialize by using
the usual LV before they are declared as pool metadata spare.
We can optimize some other parts like udev to do a better job if
it knows that the LV is temporary and any processing on it is just
useless.
This flag is orthogonal to LV_NOSCAN flag introduced recently
as LV_NOSCAN flag is primarily used to mark an LV for the scanning
to be avoided before the zeroing of the device happens. The LV_TEMPORARY
flag makes a difference between a full-fledged LV visible in the system
and the LV just used as a temporary overlay for some action that needs to
be done on underlying PVs.
For example: lvcreate --thinpool POOL --zero n -L 1G vg
- first, the usual LV is created to do a clean up for pool metadata
spare. The LV is activated, zeroed, deactivated.
- between "activated" and "zeroed" stage, the LV_NOSCAN flag is used
to avoid any scanning in udev
- betwen "zeroed" and "deactivated" stage, we need to avoid the WATCH
udev rule, but since the LV is just a usual LV, we can't make a
difference. The LV_TEMPORARY internal LV flag helps here. If we
create the LV with this flag, the DM_UDEV_DISABLE_DISK_RULES
and DM_UDEV_DISABLE_OTHER_RULES flag are set (just like as it is
with "invisible" and non-top-level LVs) - udev is directed to
skip WATCH rule use.
- if the LV_TEMPORARY flag was not used, there would normally be
a WATCH event generated once the LV is closed after "zeroed"
stage. This will make problems with immediated deactivation that
follows.
2013-10-23 16:06:39 +04:00
unsigned noscan ; /* Mark this LV to avoid its scanning. This also
directs udev to use proper udev flag to avoid
any scanning in udev . This udev flag is automatically
dropped in udev db on any spurious event that follows . */
unsigned temporary ; /* Mark this LV as temporary. It means, the LV
* is created , used and deactivated within single
* LVM command execution . Such LVs are mostly helper
* LVs to do some action or cleanup before the proper
* LV is created . This also directs udev to use proper
* set of flags to avoid any scanning in udev . These udev
* flags are persistent in udev db for any spurious event
* that follows . */
2016-04-15 04:21:27 +03:00
unsigned resuming ; /* Set when resuming after a suspend. */
2018-02-28 19:22:09 +03:00
const struct logical_volume * component_lv ;
2011-06-17 18:14:19 +04:00
} ;
2014-04-18 05:46:34 +04:00
void set_activation ( int activation , int silent ) ;
2002-12-20 02:25:55 +03:00
int activation ( void ) ;
2002-11-18 17:01:16 +03:00
2002-01-17 19:39:24 +03:00
int driver_version ( char * version , size_t size ) ;
int library_version ( char * version , size_t size ) ;
2009-02-28 03:54:06 +03:00
int module_present ( struct cmd_context * cmd , const char * target_name ) ;
2016-04-27 12:11:58 +03:00
int target_present_version ( struct cmd_context * cmd , const char * target_name ,
int use_modprobe , uint32_t * maj ,
uint32_t * min , uint32_t * patchlevel ) ;
2009-02-28 03:54:06 +03:00
int target_present ( struct cmd_context * cmd , const char * target_name ,
int use_modprobe ) ;
2005-12-20 00:01:39 +03:00
int target_version ( const char * target_name , uint32_t * maj ,
2010-08-17 02:54:35 +04:00
uint32_t * min , uint32_t * patchlevel ) ;
2016-10-27 12:38:16 +03:00
int raid4_is_supported ( struct cmd_context * cmd , const struct segment_type * segtype ) ;
2011-11-11 20:41:37 +04:00
int lvm_dm_prefix_check ( int major , int minor , const char * prefix ) ;
2006-10-03 21:55:20 +04:00
int list_segment_modules ( struct dm_pool * mem , const struct lv_segment * seg ,
2008-11-04 01:14:30 +03:00
struct dm_list * modules ) ;
2006-10-03 21:55:20 +04:00
int list_lv_modules ( struct dm_pool * mem , const struct logical_volume * lv ,
2008-11-04 01:14:30 +03:00
struct dm_list * modules ) ;
2004-03-26 22:52:09 +03:00
2006-05-16 20:48:31 +04:00
void activation_release ( void ) ;
2003-07-05 02:34:56 +04:00
void activation_exit ( void ) ;
2010-08-17 20:25:32 +04:00
/* int lv_suspend(struct cmd_context *cmd, const char *lvid_s); */
2014-09-22 17:50:07 +04:00
int lv_suspend_if_active ( struct cmd_context * cmd , const char * lvid_s , unsigned origin_only , unsigned exclusive ,
2015-11-25 12:52:22 +03:00
const struct logical_volume * lv , const struct logical_volume * lv_pre ) ;
2014-09-22 17:50:07 +04:00
int lv_resume ( struct cmd_context * cmd , const char * lvid_s , unsigned origin_only , const struct logical_volume * lv ) ;
2011-02-18 03:36:04 +03:00
int lv_resume_if_active ( struct cmd_context * cmd , const char * lvid_s ,
2014-09-22 17:50:07 +04:00
unsigned origin_only , unsigned exclusive , unsigned revert , const struct logical_volume * lv ) ;
activation: flag temporary LVs internally
Add LV_TEMPORARY flag for LVs with limited existence during command
execution. Such LVs are temporary in way that they need to be activated,
some action done and then removed immediately. Such LVs are just like
any normal LV - the only difference is that they are removed during
LVM command execution. This is also the case for LVs representing
future pool metadata spare LVs which we need to initialize by using
the usual LV before they are declared as pool metadata spare.
We can optimize some other parts like udev to do a better job if
it knows that the LV is temporary and any processing on it is just
useless.
This flag is orthogonal to LV_NOSCAN flag introduced recently
as LV_NOSCAN flag is primarily used to mark an LV for the scanning
to be avoided before the zeroing of the device happens. The LV_TEMPORARY
flag makes a difference between a full-fledged LV visible in the system
and the LV just used as a temporary overlay for some action that needs to
be done on underlying PVs.
For example: lvcreate --thinpool POOL --zero n -L 1G vg
- first, the usual LV is created to do a clean up for pool metadata
spare. The LV is activated, zeroed, deactivated.
- between "activated" and "zeroed" stage, the LV_NOSCAN flag is used
to avoid any scanning in udev
- betwen "zeroed" and "deactivated" stage, we need to avoid the WATCH
udev rule, but since the LV is just a usual LV, we can't make a
difference. The LV_TEMPORARY internal LV flag helps here. If we
create the LV with this flag, the DM_UDEV_DISABLE_DISK_RULES
and DM_UDEV_DISABLE_OTHER_RULES flag are set (just like as it is
with "invisible" and non-top-level LVs) - udev is directed to
skip WATCH rule use.
- if the LV_TEMPORARY flag was not used, there would normally be
a WATCH event generated once the LV is closed after "zeroed"
stage. This will make problems with immediated deactivation that
follows.
2013-10-23 16:06:39 +04:00
int lv_activate ( struct cmd_context * cmd , const char * lvid_s , int exclusive ,
2014-09-22 17:50:07 +04:00
int noscan , int temporary , const struct logical_volume * lv ) ;
activation: flag temporary LVs internally
Add LV_TEMPORARY flag for LVs with limited existence during command
execution. Such LVs are temporary in way that they need to be activated,
some action done and then removed immediately. Such LVs are just like
any normal LV - the only difference is that they are removed during
LVM command execution. This is also the case for LVs representing
future pool metadata spare LVs which we need to initialize by using
the usual LV before they are declared as pool metadata spare.
We can optimize some other parts like udev to do a better job if
it knows that the LV is temporary and any processing on it is just
useless.
This flag is orthogonal to LV_NOSCAN flag introduced recently
as LV_NOSCAN flag is primarily used to mark an LV for the scanning
to be avoided before the zeroing of the device happens. The LV_TEMPORARY
flag makes a difference between a full-fledged LV visible in the system
and the LV just used as a temporary overlay for some action that needs to
be done on underlying PVs.
For example: lvcreate --thinpool POOL --zero n -L 1G vg
- first, the usual LV is created to do a clean up for pool metadata
spare. The LV is activated, zeroed, deactivated.
- between "activated" and "zeroed" stage, the LV_NOSCAN flag is used
to avoid any scanning in udev
- betwen "zeroed" and "deactivated" stage, we need to avoid the WATCH
udev rule, but since the LV is just a usual LV, we can't make a
difference. The LV_TEMPORARY internal LV flag helps here. If we
create the LV with this flag, the DM_UDEV_DISABLE_DISK_RULES
and DM_UDEV_DISABLE_OTHER_RULES flag are set (just like as it is
with "invisible" and non-top-level LVs) - udev is directed to
skip WATCH rule use.
- if the LV_TEMPORARY flag was not used, there would normally be
a WATCH event generated once the LV is closed after "zeroed"
stage. This will make problems with immediated deactivation that
follows.
2013-10-23 16:06:39 +04:00
int lv_activate_with_filter ( struct cmd_context * cmd , const char * lvid_s , int exclusive ,
2014-09-22 17:50:07 +04:00
int noscan , int temporary , const struct logical_volume * lv ) ;
int lv_deactivate ( struct cmd_context * cmd , const char * lvid_s , const struct logical_volume * lv ) ;
2003-04-25 02:09:13 +04:00
2003-11-12 22:16:48 +03:00
int lv_mknodes ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
2016-12-23 05:35:13 +03:00
int lv_deactivate_any_missing_subdevs ( const struct logical_volume * lv ) ;
2018-06-06 00:47:24 +03:00
int activate_lv ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int deactivate_lv ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int suspend_lv ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int suspend_lv_origin ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int resume_lv ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int resume_lv_origin ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
int revert_lv ( struct cmd_context * cmd , const struct logical_volume * lv ) ;
2002-02-11 20:42:02 +03:00
/*
2014-11-13 13:41:49 +03:00
* Returns 1 if info structure has been populated , else 0 on failure .
* When lvinfo * is NULL , it returns 1 if the device is locally active , 0 otherwise .
2002-02-11 20:42:02 +03:00
*/
2012-01-25 17:10:26 +04:00
int lv_info ( struct cmd_context * cmd , const struct logical_volume * lv , int use_layer ,
struct lvinfo * info , int with_open_count , int with_read_ahead ) ;
int lv_info_by_lvid ( struct cmd_context * cmd , const char * lvid_s , int use_layer ,
2007-11-12 23:51:54 +03:00
struct lvinfo * info , int with_open_count , int with_read_ahead ) ;
2004-03-08 21:54:13 +03:00
2014-11-13 13:41:49 +03:00
/*
* Returns 1 if lv_info_and_seg_status structure has been populated ,
* else 0 on failure or if device not active locally .
*
2015-01-14 12:31:24 +03:00
* lv_info_with_seg_status is the same as calling lv_info and then lv_status ,
2014-11-13 13:41:49 +03:00
* but this fn tries to do that with one ioctl if possible .
*/
2016-12-05 16:31:25 +03:00
int lv_info_with_seg_status ( struct cmd_context * cmd ,
const struct lv_segment * lv_seg ,
2015-01-14 12:31:24 +03:00
struct lv_with_info_and_seg_status * status ,
2014-11-04 17:00:32 +03:00
int with_open_count , int with_read_ahead ) ;
2016-04-22 00:14:10 +03:00
int lv_check_not_in_use ( const struct logical_volume * lv , int error_if_used ) ;
2011-09-22 21:33:50 +04:00
2004-03-08 21:54:13 +03:00
/*
* Returns 1 if activate_lv has been set : 1 = activate ; 0 = don ' t .
*/
int lv_activation_filter ( struct cmd_context * cmd , const char * lvid_s ,
2014-09-22 17:50:07 +04:00
int * activate_lv , const struct logical_volume * lv ) ;
2012-06-27 16:59:34 +04:00
/*
* Checks against the auto_activation_volume_list and
* returns 1 if the LV should be activated , 0 otherwise .
*/
int lv_passes_auto_activation_filter ( struct cmd_context * cmd , struct logical_volume * lv ) ;
2004-03-08 21:54:13 +03:00
2010-05-24 19:32:20 +04:00
int lv_check_transient ( struct logical_volume * lv ) ;
2002-05-10 01:17:57 +04:00
/*
* Returns 1 if percent has been set , else 0.
*/
2014-06-09 14:08:27 +04:00
int lv_snapshot_percent ( const struct logical_volume * lv , dm_percent_t * percent ) ;
2011-02-18 17:47:28 +03:00
int lv_mirror_percent ( struct cmd_context * cmd , const struct logical_volume * lv ,
2014-06-09 14:08:27 +04:00
int wait , dm_percent_t * percent , uint32_t * event_nr ) ;
int lv_raid_percent ( const struct logical_volume * lv , dm_percent_t * percent ) ;
2017-02-24 02:50:00 +03:00
int lv_raid_dev_count ( const struct logical_volume * lv , uint32_t * dev_cnt ) ;
int lv_raid_data_offset ( const struct logical_volume * lv , uint64_t * data_offset ) ;
2013-02-01 21:31:47 +04:00
int lv_raid_dev_health ( const struct logical_volume * lv , char * * dev_health ) ;
2013-04-12 00:33:59 +04:00
int lv_raid_mismatch_count ( const struct logical_volume * lv , uint64_t * cnt ) ;
int lv_raid_sync_action ( const struct logical_volume * lv , char * * sync_action ) ;
int lv_raid_message ( const struct logical_volume * lv , const char * msg ) ;
2018-08-27 22:53:09 +03:00
int lv_writecache_message ( const struct logical_volume * lv , const char * msg ) ;
2017-07-20 20:13:32 +03:00
int lv_cache_status ( const struct logical_volume * cache_lv ,
2014-11-03 14:52:29 +03:00
struct lv_status_cache * * status ) ;
2012-01-19 19:25:37 +04:00
int lv_thin_pool_percent ( const struct logical_volume * lv , int metadata ,
2014-06-09 14:08:27 +04:00
dm_percent_t * percent ) ;
2012-01-19 19:27:54 +04:00
int lv_thin_percent ( const struct logical_volume * lv , int mapped ,
2014-06-09 14:08:27 +04:00
dm_percent_t * percent ) ;
2012-01-25 12:48:42 +04:00
int lv_thin_pool_transaction_id ( const struct logical_volume * lv ,
uint64_t * transaction_id ) ;
2013-12-04 16:57:27 +04:00
int lv_thin_device_id ( const struct logical_volume * lv , uint32_t * device_id ) ;
2018-06-29 12:15:54 +03:00
int lv_vdo_pool_status ( const struct logical_volume * lv , int flush ,
struct lv_status_vdo * * status ) ;
2001-11-07 18:02:07 +03:00
2001-11-07 14:51:42 +03:00
/*
2002-02-11 18:48:34 +03:00
* Return number of LVs in the VG that are active .
2001-11-07 14:51:42 +03:00
*/
2012-02-24 02:41:57 +04:00
int lvs_in_vg_activated ( const struct volume_group * vg ) ;
2007-08-07 13:06:05 +04:00
int lvs_in_vg_opened ( const struct volume_group * vg ) ;
2001-10-16 20:25:28 +04:00
2012-02-24 02:41:57 +04:00
int lv_is_active ( const struct logical_volume * lv ) ;
2006-05-12 23:16:48 +04:00
2018-02-27 16:13:00 +03:00
/* Check is any component LV is active */
const struct logical_volume * lv_component_is_active ( const struct logical_volume * lv ) ;
const struct logical_volume * lv_holder_is_active ( const struct logical_volume * lv ) ;
int deactivate_lv_with_sub_lv ( const struct logical_volume * lv ) ;
2014-09-22 17:50:07 +04:00
int lv_has_target_type ( struct dm_pool * mem , const struct logical_volume * lv ,
2010-04-23 06:57:39 +04:00
const char * layer , const char * target_type ) ;
2014-09-22 17:50:07 +04:00
int monitor_dev_for_events ( struct cmd_context * cmd , const struct logical_volume * lv ,
2017-07-20 20:13:32 +03:00
const struct lv_activate_opts * laopts , int monitor ) ;
2006-05-12 23:16:48 +04:00
2010-08-17 02:54:35 +04:00
# ifdef DMEVENTD
2018-06-04 13:25:48 +03:00
# include "daemons / dmeventd / libdevmapper-event.h"
2018-02-10 22:22:32 +03:00
char * get_monitor_dso_path ( struct cmd_context * cmd , int id ) ;
2017-07-20 20:13:32 +03:00
int target_registered_with_dmeventd ( struct cmd_context * cmd , const char * dso ,
2018-01-29 18:28:57 +03:00
const struct logical_volume * lv , int * pending , int * monitored ) ;
2014-09-22 17:50:07 +04:00
int target_register_events ( struct cmd_context * cmd , const char * dso , const struct logical_volume * lv ,
2010-08-17 02:54:35 +04:00
int evmask __attribute__ ( ( unused ) ) , int set , int timeout ) ;
# endif
2011-11-29 00:37:51 +04:00
int add_linear_area_to_dtree ( struct dm_tree_node * node , uint64_t size ,
uint32_t extent_size , int use_linear_target ,
const char * vgname , const char * lvname ) ;
2005-10-25 23:08:21 +04:00
/*
* Returns 1 if PV has a dependency tree that uses anything in VG .
*/
2006-05-11 21:58:58 +04:00
int pv_uses_vg ( struct physical_volume * pv ,
2005-10-25 23:08:21 +04:00
struct volume_group * vg ) ;
2014-09-23 14:47:11 +04:00
struct dev_usable_check_params {
unsigned int check_empty : 1 ;
unsigned int check_blocked : 1 ;
unsigned int check_suspended : 1 ;
unsigned int check_error_target : 1 ;
unsigned int check_reserved : 1 ;
2018-08-29 21:14:18 +03:00
unsigned int check_lv : 1 ;
2014-09-23 14:47:11 +04:00
} ;
2007-01-26 00:22:30 +03:00
/*
2013-08-08 02:42:26 +04:00
* Returns 1 if mapped device is not suspended , blocked or
* is using a reserved name .
2007-01-26 00:22:30 +03:00
*/
2014-09-23 14:47:11 +04:00
int device_is_usable ( struct device * dev , struct dev_usable_check_params check ) ;
2013-08-08 02:42:26 +04:00
2011-01-10 17:02:30 +03:00
/*
* Declaration moved here from fs . h to keep header fs . h hidden
*/
void fs_unlock ( void ) ;
2016-03-22 20:46:15 +03:00
# define TARGET_NAME_CACHE "cache"
2018-08-27 22:53:09 +03:00
# define TARGET_NAME_WRITECACHE "writecache"
2016-03-22 20:46:15 +03:00
# define TARGET_NAME_ERROR "error"
# define TARGET_NAME_ERROR_OLD "erro" /* Truncated in older kernels */
# define TARGET_NAME_LINEAR "linear"
# define TARGET_NAME_MIRROR "mirror"
# define TARGET_NAME_RAID "raid"
# define TARGET_NAME_SNAPSHOT "snapshot"
# define TARGET_NAME_SNAPSHOT_MERGE "snapshot-merge"
# define TARGET_NAME_SNAPSHOT_ORIGIN "snapshot-origin"
# define TARGET_NAME_STRIPED "striped"
# define TARGET_NAME_THIN "thin"
# define TARGET_NAME_THIN_POOL "thin-pool"
2018-06-29 12:11:14 +03:00
# define TARGET_NAME_VDO "vdo"
2016-03-22 20:46:15 +03:00
# define TARGET_NAME_ZERO "zero"
# define MODULE_NAME_CLUSTERED_MIRROR "clog"
# define MODULE_NAME_CACHE TARGET_NAME_CACHE
2018-08-27 22:53:09 +03:00
# define MODULE_NAME_WRITECACHE TARGET_NAME_WRITECACHE
2016-03-22 20:46:15 +03:00
# define MODULE_NAME_ERROR TARGET_NAME_ERROR
# define MODULE_NAME_LOG_CLUSTERED "log-clustered"
# define MODULE_NAME_LOG_USERSPACE "log-userspace"
# define MODULE_NAME_MIRROR TARGET_NAME_MIRROR
# define MODULE_NAME_SNAPSHOT TARGET_NAME_SNAPSHOT
# define MODULE_NAME_RAID TARGET_NAME_RAID
2018-06-29 12:02:24 +03:00
# define MODULE_NAME_VDO "kvdo" /* does NOT use dm- prefix */
2016-03-22 20:46:15 +03:00
# define MODULE_NAME_ZERO TARGET_NAME_ZERO
2001-10-09 20:05:34 +04:00
# endif