mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +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:
parent
26303811a4
commit
34338a3406
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user