1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

lvmlockd: print warning when skipping locking

This commit is contained in:
David Teigland 2018-01-09 11:46:00 -06:00
parent 46cedb105b
commit 51340888aa

View File

@ -2684,13 +2684,19 @@ static int _init_lvmlockd(struct cmd_context *cmd)
if (use_lvmlockd && arg_is_set(cmd, lockopt_ARG)) {
const char *opts = arg_str_value(cmd, lockopt_ARG, "");
if (strstr(opts, "skiplv"))
if (strstr(opts, "skiplv")) {
log_warn("WARNING: skipping LV lock in lvmlockd.");
cmd->lockd_lv_disable = 1;
if (strstr(opts, "skipvg"))
}
if (strstr(opts, "skipvg")) {
log_warn("WARNING: skipping VG lock in lvmlockd.");
cmd->lockd_vg_disable = 1;
if (strstr(opts, "skipgl"))
}
if (strstr(opts, "skipgl")) {
log_warn("WARNING: skipping global lock in lvmlockd.");
cmd->lockd_gl_disable = 1;
}
}
if (use_lvmlockd && locking_is_clustered()) {
log_error("ERROR: configuration setting use_lvmlockd cannot be used with clustered locking_type 3.");