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:
parent
46cedb105b
commit
51340888aa
@ -2684,12 +2684,18 @@ static int _init_lvmlockd(struct cmd_context *cmd)
|
|||||||
|
|
||||||
if (use_lvmlockd && arg_is_set(cmd, lockopt_ARG)) {
|
if (use_lvmlockd && arg_is_set(cmd, lockopt_ARG)) {
|
||||||
const char *opts = arg_str_value(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;
|
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;
|
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;
|
cmd->lockd_gl_disable = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (use_lvmlockd && locking_is_clustered()) {
|
if (use_lvmlockd && locking_is_clustered()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user