]> sourceware.org Git - lvm2.git/commitdiff
remove unused trustcache option
authorDavid Teigland <teigland@redhat.com>
Tue, 11 Jun 2019 16:42:49 +0000 (11:42 -0500)
committerDavid Teigland <teigland@redhat.com>
Tue, 11 Jun 2019 16:42:49 +0000 (11:42 -0500)
lib/misc/lvm-globals.c
lib/misc/lvm-globals.h
tools/args.h
tools/command-lines.in
tools/lvmcmdline.c

index 6d3bf021f6c47475d4ee817d2175e55fe02666fa..eb99cf596d66f8a20fc077808163797a098b7df1 100644 (file)
@@ -31,7 +31,6 @@ static int _fwraid_filtering = 0;
 static int _pvmove = 0;
 static int _obtain_device_list_from_udev = DEFAULT_OBTAIN_DEVICE_LIST_FROM_UDEV;
 static enum dev_ext_e _external_device_info_source = DEV_EXT_NONE;
-static int _trust_cache = 0; /* Don't scan when incomplete VGs encountered */
 static int _debug_level = 0;
 static int _debug_classes_logged = 0;
 static int _security_level = SECURITY_LEVEL;
@@ -107,11 +106,6 @@ void init_external_device_info_source(enum dev_ext_e src)
        _external_device_info_source = src;
 }
 
-void init_trust_cache(int trustcache)
-{
-       _trust_cache = trustcache;
-}
-
 void init_security_level(int level)
 {
        _security_level = level;
@@ -285,11 +279,6 @@ enum dev_ext_e external_device_info_source(void)
        return _external_device_info_source;
 }
 
-int trust_cache(void)
-{
-       return _trust_cache;
-}
-
 int background_polling(void)
 {
        return _background_polling;
index 944b8224c0ce96edaa32eb9fe3c2fbb8cb1cff4c..921ae7ebe501d25840e08b6b2cf764d17bb0381b 100644 (file)
@@ -32,7 +32,6 @@ void init_fwraid_filtering(int level);
 void init_pvmove(int level);
 void init_external_device_info_source(enum dev_ext_e src);
 void init_obtain_device_list_from_udev(int device_list_from_udev);
-void init_trust_cache(int trustcache);
 void init_debug(int level);
 void init_debug_classes_logged(int classes);
 void init_cmd_name(int status);
@@ -65,7 +64,6 @@ int fwraid_filtering(void);
 int pvmove_mode(void);
 int obtain_device_list_from_udev(void);
 enum dev_ext_e external_device_info_source(void);
-int trust_cache(void);
 int verbose_level(void);
 int silent_mode(void);
 int debug_level(void);
index e972c7dd9e6fafd4dc4a2903bb73620ef4196c83..bd07aa3d73f111d64d68bdafb1c9c07bc6b73572 100644 (file)
@@ -713,9 +713,8 @@ arg(trackchanges_ARG, '\0', "trackchanges", 0, 0, 0,
     "merging the split image (see --mergemirrors) or permanently splitting\n"
     "the image (see --splitmirrors with --name.\n")
 
-/* TODO: hide this? */
 arg(trustcache_ARG, '\0', "trustcache", 0, 0, 0,
-    "Avoids certain device scanning during command processing. Do not use.\n")
+    "No longer used.\n")
 
 arg(type_ARG, '\0', "type", segtype_VAL, 0, 0,
     "The LV type, also known as \"segment type\" or \"segtype\".\n"
index c9d4fd641bd4fe71d511707f9775343d7a913de0..73a1e647c0e935c95fc612c46c00e3b66000723d 100644 (file)
@@ -198,7 +198,7 @@ OO_REPORT: --aligned, --all, --binary, --configreport ConfigReport, --foreign,
 --nameprefixes, --noheadings, --nosuffix,
 --options String, --readonly, --reportformat ReportFmt, --rows,
 --select String, --separator String, --shared, --sort String,
---trustcache, --unbuffered, --units Units, --unquoted
+--unbuffered, --units Units, --unquoted
 
 #
 # options for config, dumpconfig, lvmconfig
@@ -1384,7 +1384,7 @@ DESC: Resize a pool metadata SubLV by a specified size.
 lvs
 OO: --history, --segments, OO_REPORT
 OP: VG|LV|Tag ...
-IO: --partial, --ignoreskippedcluster
+IO: --partial, --ignoreskippedcluster, --trustcache
 ID: lvs_general
 
 ---
@@ -1486,7 +1486,7 @@ ID: pvremove_general
 pvs
 OO: --segments, OO_REPORT
 OP: PV|Tag ...
-IO: --partial, --ignoreskippedcluster
+IO: --partial, --ignoreskippedcluster, --trustcache
 ID: pvs_general
 
 ---
@@ -1752,7 +1752,7 @@ DESC: Rename a VG by specifying the VG UUID.
 vgs
 OO: OO_REPORT
 OP: VG|Tag ...
-IO: --partial, --ignoreskippedcluster
+IO: --partial, --ignoreskippedcluster, --trustcache
 ID: vgs_general
 
 ---
@@ -1807,7 +1807,7 @@ ID: devtypes_general
 fullreport
 OO: OO_REPORT
 OP: VG ...
-IO: --partial, --ignoreskippedcluster
+IO: --partial, --ignoreskippedcluster, --trustcache
 ID: fullreport_general
 
 lastlog
index 922c52d48eebe226416bb44a7d08632f38b7a0a1..3fec7025f0a8bcd960ed9e43f73c941e52593890 100644 (file)
@@ -2396,17 +2396,6 @@ static int _get_current_settings(struct cmd_context *cmd)
        if (arg_is_set(cmd, binary_ARG))
                cmd->report_binary_values_as_numeric = 1;
 
-       if (arg_is_set(cmd, trustcache_ARG)) {
-               if (arg_is_set(cmd, all_ARG)) {
-                       log_error("--trustcache is incompatible with --all");
-                       return EINVALID_CMD_LINE;
-               }
-               init_trust_cache(1);
-               log_warn("WARNING: Cache file of PVs will be trusted.  "
-                         "New devices holding PVs may get ignored.");
-       } else
-               init_trust_cache(0);
-
        if (arg_is_set(cmd, noudevsync_ARG))
                cmd->current_settings.udev_sync = 0;
 
This page took 0.04021 seconds and 5 git commands to generate.