348 lines
18 KiB
Diff
348 lines
18 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Martin Wilck <mwilck@suse.com>
|
||
|
Date: Mon, 17 May 2021 23:12:10 +0200
|
||
|
Subject: [PATCH] libdmmp: use KBUILD_BUILD_TIMESTAMP when building man pages
|
||
|
|
||
|
Use the latest commit timestamp of the "libdmmp.h" file as
|
||
|
the timestamp for the man pages. This should avoid spurious rebuilds
|
||
|
of the documentation.
|
||
|
|
||
|
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
---
|
||
|
libdmmp/Makefile | 2 ++
|
||
|
libdmmp/docs/man/dmmp_context_free.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_log_func_set.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_log_priority_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_log_priority_set.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_new.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_timeout_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_timeout_set.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_userdata_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_context_userdata_set.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_flush_mpath.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_last_error_msg.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_log_priority_str.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_mpath_array_free.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_mpath_array_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_mpath_kdev_name_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_mpath_name_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_mpath_wwid_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_array_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_blk_name_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_array_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_id_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_priority_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_selector_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_status_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_group_status_str.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_status_get.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_path_status_str.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_reconfig.3 | 2 +-
|
||
|
libdmmp/docs/man/dmmp_strerror.3 | 2 +-
|
||
|
30 files changed, 31 insertions(+), 29 deletions(-)
|
||
|
|
||
|
diff --git a/libdmmp/Makefile b/libdmmp/Makefile
|
||
|
index 764a0bc5..79b92fb2 100644
|
||
|
--- a/libdmmp/Makefile
|
||
|
+++ b/libdmmp/Makefile
|
||
|
@@ -76,6 +76,8 @@ docs/man/%.3.gz: docs/man/%.3
|
||
|
docs/man/dmmp_strerror.3: $(HEADERS)
|
||
|
TEMPFILE=$(shell mktemp); \
|
||
|
cat $^ | perl docs/doc-preclean.pl >$$TEMPFILE; \
|
||
|
+ LC_ALL=C \
|
||
|
+ KBUILD_BUILD_TIMESTAMP=`git log -n1 --pretty=%cd --date=iso -- $^` \
|
||
|
perl docs/kernel-doc -man $$TEMPFILE | \
|
||
|
perl docs/split-man.pl docs/man; \
|
||
|
rm -f $$TEMPFILE
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_free.3 b/libdmmp/docs/man/dmmp_context_free.3
|
||
|
index 0d26f42c..7c109e13 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_free.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_free.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_free" 3 "dmmp_context_free" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_free" 3 "dmmp_context_free" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_free \- Release the memory of struct dmmp_context.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_log_func_set.3 b/libdmmp/docs/man/dmmp_context_log_func_set.3
|
||
|
index 986793db..be311ecf 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_log_func_set.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_log_func_set.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_log_func_set" 3 "dmmp_context_log_func_set" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_log_func_set" 3 "dmmp_context_log_func_set" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_log_func_set \- Set log handler function.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_log_priority_get.3 b/libdmmp/docs/man/dmmp_context_log_priority_get.3
|
||
|
index 9a273a28..be383013 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_log_priority_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_log_priority_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_log_priority_get" 3 "dmmp_context_log_priority_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_log_priority_get" 3 "dmmp_context_log_priority_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_log_priority_get \- Get log priority.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_log_priority_set.3 b/libdmmp/docs/man/dmmp_context_log_priority_set.3
|
||
|
index 469c5a49..79e4d2e8 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_log_priority_set.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_log_priority_set.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_log_priority_set" 3 "dmmp_context_log_priority_set" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_log_priority_set" 3 "dmmp_context_log_priority_set" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_log_priority_set \- Set log priority.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_new.3 b/libdmmp/docs/man/dmmp_context_new.3
|
||
|
index 0eaeb00d..12505f91 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_new.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_new.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_new" 3 "dmmp_context_new" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_new" 3 "dmmp_context_new" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_new \- Create struct dmmp_context.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_timeout_get.3 b/libdmmp/docs/man/dmmp_context_timeout_get.3
|
||
|
index 1df27936..2ed825d5 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_timeout_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_timeout_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_timeout_get" 3 "dmmp_context_timeout_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_timeout_get" 3 "dmmp_context_timeout_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_timeout_get \- Get IPC timeout.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_timeout_set.3 b/libdmmp/docs/man/dmmp_context_timeout_set.3
|
||
|
index f3d77092..16bc9d99 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_timeout_set.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_timeout_set.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_timeout_set" 3 "dmmp_context_timeout_set" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_timeout_set" 3 "dmmp_context_timeout_set" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_timeout_set \- Set IPC timeout.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_userdata_get.3 b/libdmmp/docs/man/dmmp_context_userdata_get.3
|
||
|
index fb713d50..eff446c6 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_userdata_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_userdata_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_userdata_get" 3 "dmmp_context_userdata_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_userdata_get" 3 "dmmp_context_userdata_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_userdata_get \- Get user data pointer.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_context_userdata_set.3 b/libdmmp/docs/man/dmmp_context_userdata_set.3
|
||
|
index c5bf63f3..d7be869f 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_context_userdata_set.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_context_userdata_set.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_context_userdata_set" 3 "dmmp_context_userdata_set" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_context_userdata_set" 3 "dmmp_context_userdata_set" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_context_userdata_set \- Set user data pointer.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_flush_mpath.3 b/libdmmp/docs/man/dmmp_flush_mpath.3
|
||
|
index cdfd5266..359607ed 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_flush_mpath.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_flush_mpath.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_flush_mpath" 3 "dmmp_flush_mpath" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_flush_mpath" 3 "dmmp_flush_mpath" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_flush_mpath \- Flush specified multipath device map if unused.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_last_error_msg.3 b/libdmmp/docs/man/dmmp_last_error_msg.3
|
||
|
index 20acbc6a..378c55a5 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_last_error_msg.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_last_error_msg.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_last_error_msg" 3 "dmmp_last_error_msg" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_last_error_msg" 3 "dmmp_last_error_msg" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_last_error_msg \- Retrieves the last error message.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_log_priority_str.3 b/libdmmp/docs/man/dmmp_log_priority_str.3
|
||
|
index 3b5f8284..b2761602 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_log_priority_str.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_log_priority_str.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_log_priority_str" 3 "dmmp_log_priority_str" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_log_priority_str" 3 "dmmp_log_priority_str" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_log_priority_str \- Convert log priority to string.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_mpath_array_free.3 b/libdmmp/docs/man/dmmp_mpath_array_free.3
|
||
|
index 8c294e0d..0514a66f 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_mpath_array_free.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_mpath_array_free.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_mpath_array_free" 3 "dmmp_mpath_array_free" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_mpath_array_free" 3 "dmmp_mpath_array_free" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_mpath_array_free \- Free 'struct dmmp_mpath' pointer array.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_mpath_array_get.3 b/libdmmp/docs/man/dmmp_mpath_array_get.3
|
||
|
index e211db42..8b0e5b53 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_mpath_array_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_mpath_array_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_mpath_array_get" 3 "dmmp_mpath_array_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_mpath_array_get" 3 "dmmp_mpath_array_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_mpath_array_get \- Query all existing multipath devices.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_mpath_kdev_name_get.3 b/libdmmp/docs/man/dmmp_mpath_kdev_name_get.3
|
||
|
index e802fe6d..ddead551 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_mpath_kdev_name_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_mpath_kdev_name_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_mpath_kdev_name_get" 3 "dmmp_mpath_kdev_name_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_mpath_kdev_name_get" 3 "dmmp_mpath_kdev_name_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_mpath_kdev_name_get \- Retrieve kernel DEVNAME of certain mpath.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_mpath_name_get.3 b/libdmmp/docs/man/dmmp_mpath_name_get.3
|
||
|
index d70579e5..2b0027e5 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_mpath_name_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_mpath_name_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_mpath_name_get" 3 "dmmp_mpath_name_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_mpath_name_get" 3 "dmmp_mpath_name_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_mpath_name_get \- Retrieve name(alias) of certain mpath.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_mpath_wwid_get.3 b/libdmmp/docs/man/dmmp_mpath_wwid_get.3
|
||
|
index 3d060e92..b8e9e7d8 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_mpath_wwid_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_mpath_wwid_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_mpath_wwid_get" 3 "dmmp_mpath_wwid_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_mpath_wwid_get" 3 "dmmp_mpath_wwid_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_mpath_wwid_get \- Retrieve WWID of certain mpath.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_array_get.3 b/libdmmp/docs/man/dmmp_path_array_get.3
|
||
|
index 53340b3d..21f486be 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_array_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_array_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_array_get" 3 "dmmp_path_array_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_array_get" 3 "dmmp_path_array_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_array_get \- Retrieve path pointer array.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_blk_name_get.3 b/libdmmp/docs/man/dmmp_path_blk_name_get.3
|
||
|
index da5f9f03..5938f0e7 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_blk_name_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_blk_name_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_blk_name_get" 3 "dmmp_path_blk_name_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_blk_name_get" 3 "dmmp_path_blk_name_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_blk_name_get \- Retrieve block name.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_array_get.3 b/libdmmp/docs/man/dmmp_path_group_array_get.3
|
||
|
index 6eee4a2b..ca3187cb 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_array_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_array_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_array_get" 3 "dmmp_path_group_array_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_array_get" 3 "dmmp_path_group_array_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_array_get \- Retrieve path groups pointer array.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_id_get.3 b/libdmmp/docs/man/dmmp_path_group_id_get.3
|
||
|
index 4f07b536..a84f31f0 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_id_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_id_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_id_get" 3 "dmmp_path_group_id_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_id_get" 3 "dmmp_path_group_id_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_id_get \- Retrieve path group ID.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_priority_get.3 b/libdmmp/docs/man/dmmp_path_group_priority_get.3
|
||
|
index a48b2704..1cda8af3 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_priority_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_priority_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_priority_get" 3 "dmmp_path_group_priority_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_priority_get" 3 "dmmp_path_group_priority_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_priority_get \- Retrieve path group priority.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_selector_get.3 b/libdmmp/docs/man/dmmp_path_group_selector_get.3
|
||
|
index 407b3f41..f55477bb 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_selector_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_selector_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_selector_get" 3 "dmmp_path_group_selector_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_selector_get" 3 "dmmp_path_group_selector_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_selector_get \- Retrieve path group selector.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_status_get.3 b/libdmmp/docs/man/dmmp_path_group_status_get.3
|
||
|
index a81aeb3a..53e68b8e 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_status_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_status_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_status_get" 3 "dmmp_path_group_status_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_status_get" 3 "dmmp_path_group_status_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_status_get \- Retrieve path group status.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_group_status_str.3 b/libdmmp/docs/man/dmmp_path_group_status_str.3
|
||
|
index e4a9f74b..98f877a4 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_group_status_str.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_group_status_str.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_group_status_str" 3 "dmmp_path_group_status_str" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_group_status_str" 3 "dmmp_path_group_status_str" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_group_status_str \- Convert path group status to string.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_status_get.3 b/libdmmp/docs/man/dmmp_path_status_get.3
|
||
|
index 025cfee5..baa4437d 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_status_get.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_status_get.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_status_get" 3 "dmmp_path_status_get" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_status_get" 3 "dmmp_path_status_get" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_status_get \- Retrieve the path status.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_path_status_str.3 b/libdmmp/docs/man/dmmp_path_status_str.3
|
||
|
index 3944d399..425e472a 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_path_status_str.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_path_status_str.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_path_status_str" 3 "dmmp_path_status_str" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_path_status_str" 3 "dmmp_path_status_str" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_path_status_str \- Convert path status to string.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_reconfig.3 b/libdmmp/docs/man/dmmp_reconfig.3
|
||
|
index a743e308..36bd5041 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_reconfig.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_reconfig.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_reconfig" 3 "dmmp_reconfig" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_reconfig" 3 "dmmp_reconfig" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_reconfig \- Instruct multipathd daemon to do reconfiguration.
|
||
|
.SH SYNOPSIS
|
||
|
diff --git a/libdmmp/docs/man/dmmp_strerror.3 b/libdmmp/docs/man/dmmp_strerror.3
|
||
|
index 4d753d36..3acd9c9d 100644
|
||
|
--- a/libdmmp/docs/man/dmmp_strerror.3
|
||
|
+++ b/libdmmp/docs/man/dmmp_strerror.3
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-.TH "dmmp_strerror" 3 "dmmp_strerror" "March 2021" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
+.TH "dmmp_strerror" 3 "dmmp_strerror" "March 2018" "Device Mapper Multipath API - libdmmp Manual"
|
||
|
.SH NAME
|
||
|
dmmp_strerror \- Convert error code to string.
|
||
|
.SH SYNOPSIS
|