1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Need 'ifdef' checks around RAID monitoring functions as well to catch the

case where the user does not want dmeventd support compiled in.
This commit is contained in:
Jonathan Earl Brassow 2011-08-11 14:00:58 +00:00
parent 26303811a4
commit 34338a3406

View File

@ -262,6 +262,8 @@ static void _raid_destroy(struct segment_type *segtype)
dm_free((void *) segtype);
}
#ifdef DEVMAPPER_SUPPORT
#ifdef DMEVENTD
static const char *_get_raid_dso_path(struct cmd_context *cmd)
{
const char *config_str = find_config_tree_str(cmd, "dmeventd/raid_library",
@ -294,7 +296,8 @@ static int _raid_target_unmonitor_events(struct lv_segment *seg, int events)
{
return _raid_set_events(seg, events, 0);
}
#endif /* DEVMAPPER_SUPPORT */
#endif /* DMEVENTD */
static struct segtype_handler _raid_ops = {
.name = _raid_name,
.text_import_area_count = _raid_text_import_area_count,