1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

Flag nolocking as a clustered locking module as we need to be able

to look at clustered LVs at clvmd startup
This commit is contained in:
Patrick Caulfield 2007-03-13 14:59:21 +00:00
parent b9b260119f
commit 5d47ed1161
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@ Version 2.02.24 -
====================================
Add a few missing pieces of vgname command line validation.
Support the /dev/mapper prefix on most command lines.
Flag nolocking as a clustered locking module as we need to be able
to look at clustered LVs at clvmd startup (2.02.10)
Version 2.02.23 - 8th March 2007
================================

View File

@ -81,7 +81,7 @@ int init_no_locking(struct locking_type *locking, struct cmd_context *cmd)
locking->lock_resource = _no_lock_resource;
locking->reset_locking = _no_reset_locking;
locking->fin_locking = _no_fin_locking;
locking->flags = 0;
locking->flags = LCK_CLUSTERED;
return 1;
}