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()) {