This patch forces to disable the DLM_LSFL_TIMEWARN flag for libdlm users as this feature is now deprecated and we will just unset it even if the user sets it. --- libdlm/libdlm.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/libdlm/libdlm.c b/libdlm/libdlm.c index fbdf9a09..c5e78616 100644 --- a/libdlm/libdlm.c +++ b/libdlm/libdlm.c @@ -1344,6 +1344,7 @@ static dlm_lshandle_t create_lockspace(const char *name, mode_t mode, dlm_lshandle_t dlm_new_lockspace(const char *name, mode_t mode, uint32_t flags) { + flags &= ~DLM_LSFL_TIMEWARN; return create_lockspace(name, mode, flags); } -- 2.31.1