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

pre-release

This commit is contained in:
Alasdair G Kergon 2015-08-26 23:11:13 +01:00
parent 8740b7cb77
commit a37fd93fbb
6 changed files with 938 additions and 766 deletions

View File

@ -1 +1 @@
2.02.129(2)-git (2015-08-17) 2.02.129(2)-git (2015-08-26)

View File

@ -1 +1 @@
1.02.106-git (2015-08-17) 1.02.106-git (2015-08-26)

View File

@ -1,4 +1,4 @@
Version 2.02.129 - Version 2.02.129 - 26th August 2015
=================================== ===================================
Drop error message when vgdisplay encounters an exported VG. (2.02.27) Drop error message when vgdisplay encounters an exported VG. (2.02.27)
Fix shared library generation to stop exporting internal functions.(2.02.120) Fix shared library generation to stop exporting internal functions.(2.02.120)

View File

@ -1,4 +1,4 @@
Version 1.02.106 - Version 1.02.106 - 26th August 2015
=================================== ===================================
Add 'precise' column to statistics reports. Add 'precise' column to statistics reports.
Add --precise switch to 'dmstats create' to request nanosecond counters. Add --precise switch to 'dmstats create' to request nanosecond counters.

File diff suppressed because it is too large Load Diff

View File

@ -24,34 +24,33 @@ local {
# Configuration option local/system_id. # Configuration option local/system_id.
# Defines the local system ID for lvmlocal mode. # Defines the local system ID for lvmlocal mode.
# This is used when global/system_id_source is set # This is used when global/system_id_source is set to 'lvmlocal' in the
# to 'lvmlocal' in the main configuration file, # main configuration file, e.g. lvm.conf. When used, it must be set to
# e.g. lvm.conf. # a unique value among all hosts sharing access to the storage,
# When used, it must be set to a unique value
# among all hosts sharing access to the storage,
# e.g. a host name. # e.g. a host name.
# Example: #
# Set no system ID. # Example
# Set no system ID:
# system_id = "" # system_id = ""
# Example: # Set the system_id to a specific name:
# Set the system_id to the string 'host1'.
# system_id = "host1" # system_id = "host1"
#
# This configuration option has an automatic default value.
# system_id = "" # system_id = ""
# Configuration option local/extra_system_ids. # Configuration option local/extra_system_ids.
# A list of extra VG system IDs the local host can access. # A list of extra VG system IDs the local host can access.
# VGs with the system IDs listed here (in addition # VGs with the system IDs listed here (in addition to the host's own
# to the host's own system ID) can be fully accessed # system ID) can be fully accessed by the local host. (These are
# by the local host. (These are system IDs that the # system IDs that the host sees in VGs, not system IDs that identify
# host sees in VGs, not system IDs that identify the # the local host, which is determined by system_id_source.)
# local host, which is determined by system_id_source.) # Use this only after consulting 'man lvmsystemid' to be certain of
# Use this only after consulting 'man lvmsystemid' # correct usage and possible dangers.
# to be certain of correct usage and possible dangers.
# This configuration option does not have a default value defined. # This configuration option does not have a default value defined.
# Configuration option local/host_id. # Configuration option local/host_id.
# The lvmlockd sanlock host_id. # The lvmlockd sanlock host_id.
# This must be a unique among all hosts, # This must be unique among all hosts, and must be between 1 and 2000.
# and must be between 1 and 2000. # This configuration option has an automatic default value.
# host_id = 0 # host_id = 0
} }