From 82d145a3726c705c8295df1c5906e8fa41bbb9f6 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Tue, 2 Jul 2024 16:58:03 +0200 Subject: [PATCH] lvmlockd: fix compilation with disabled lvmlockd With updated functionality for lvmlockd some prototypes needs to be updated for builds without lvmlockd. --- lib/locking/lvmlockd.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/locking/lvmlockd.h b/lib/locking/lvmlockd.h index b2a047cc3..31817dc81 100644 --- a/lib/locking/lvmlockd.h +++ b/lib/locking/lvmlockd.h @@ -55,10 +55,10 @@ #define LOCKOPT_ADOPTLV 0x00001000 #define LOCKOPT_ADOPT 0x00002000 -void lockd_lockopt_get_flags(const char *str, uint32_t *flags); - #ifdef LVMLOCKD_SUPPORT +void lockd_lockopt_get_flags(const char *str, uint32_t *flags); + struct lvresize_params; struct lvcreate_params; @@ -126,6 +126,10 @@ int lockd_query_lv(struct cmd_context *cmd, struct logical_volume *lv, int *ex, #else /* LVMLOCKD_SUPPORT */ +static inline void lockd_lockopt_get_flags(const char *str, uint32_t *flags) +{ +} + static inline void lvmlockd_set_socket(const char *sock) { } @@ -156,7 +160,7 @@ static inline int lockd_init_vg(struct cmd_context *cmd, struct volume_group *vg return 1; } -static inline int lockd_free_vg_before(struct cmd_context *cmd, struct volume_group *vg, int changing) +static inline int lockd_free_vg_before(struct cmd_context *cmd, struct volume_group *vg, int changing, int yes) { return 1; } -- 2.43.5