mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
config: add silent mode
Accept -q as the short form of --quiet. Suppress non-essential standard output if -q is given twice. Treat log/silent in lvm.conf as equivalent to -qq. Review all log_print messages and change some to log_print_unless_silent. When silent, the following commands still produce output: dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay, pvs, version, vgcfgrestore -l, vgdisplay, vgs. [Needs checking.] Non-essential messages are shifted from log level 4 to log level 5 for syslog and lvm2_log_fn purposes.
This commit is contained in:
parent
4047e4dfb1
commit
438e0050df
@ -1,5 +1,9 @@
|
||||
Version 2.02.98
|
||||
Version 2.02.98 -
|
||||
=================================
|
||||
Add log/silent to lvm.conf equivalent to -qq.
|
||||
Suppress non-essential stdout with -qq.
|
||||
Switch non-essential log_print messages to log_print_unless_silent.
|
||||
Use -q as short form of --quiet.
|
||||
Add RAID10 support.
|
||||
Reuse _reload_lv() in more lvconvert functions.
|
||||
Fix dereference of NULL in lvmetad error path logging.
|
||||
|
@ -234,6 +234,15 @@ log {
|
||||
# There are three levels of verbosity, 3 being the most verbose.
|
||||
verbose = 0
|
||||
|
||||
# Set to 1 to suppress all non-essential messages from stdout.
|
||||
# This has the same effect as -qq.
|
||||
# When this is set, the following commands still produce output:
|
||||
# dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
|
||||
# pvs, version, vgcfgrestore -l, vgdisplay, vgs.
|
||||
# Non-essential messages are shifted from log level 4 to log level 5
|
||||
# for syslog and lvm2_log_fn purposes.
|
||||
silent = 0
|
||||
|
||||
# Should we send log messages through syslog?
|
||||
# 1 is yes; 0 is no.
|
||||
syslog = 1
|
||||
|
2
lib/cache/lvmetad.c
vendored
2
lib/cache/lvmetad.c
vendored
@ -710,7 +710,7 @@ int pvscan_lvmetad_single(struct cmd_context *cmd, struct device *dev,
|
||||
}
|
||||
|
||||
if (!label_read(dev, &label, 0)) {
|
||||
log_print("No PV label found on %s.", dev_name(dev));
|
||||
log_print_unless_silent("No PV label found on %s.", dev_name(dev));
|
||||
if (!lvmetad_pv_gone_by_dev(dev, handler))
|
||||
goto_bad;
|
||||
return 1;
|
||||
|
@ -144,6 +144,11 @@ static void _init_logging(struct cmd_context *cmd)
|
||||
find_config_tree_int(cmd, "log/level", DEFAULT_LOGLEVEL);
|
||||
init_debug(cmd->default_settings.debug);
|
||||
|
||||
/* Suppress all non-essential stdout? */
|
||||
cmd->default_settings.silent =
|
||||
find_config_tree_int(cmd, "log/silent", DEFAULT_SILENT);
|
||||
init_silent(cmd->default_settings.silent);
|
||||
|
||||
/* Verbose level for tty output */
|
||||
cmd->default_settings.verbose =
|
||||
find_config_tree_int(cmd, "log/verbose", DEFAULT_VERBOSE);
|
||||
|
@ -27,6 +27,7 @@
|
||||
struct config_info {
|
||||
int debug;
|
||||
int verbose;
|
||||
int silent;
|
||||
int test;
|
||||
int syslog;
|
||||
int activation;
|
||||
|
@ -111,6 +111,7 @@
|
||||
|
||||
#define DEFAULT_SYSLOG 1
|
||||
#define DEFAULT_VERBOSE 0
|
||||
#define DEFAULT_SILENT 0
|
||||
#define DEFAULT_LOGLEVEL 0
|
||||
#define DEFAULT_INDENT 1
|
||||
#define DEFAULT_ABORT_ON_INTERNAL_ERRORS 0
|
||||
|
@ -935,7 +935,7 @@ char yes_no_prompt(const char *prompt, ...)
|
||||
sigint_restore();
|
||||
|
||||
if (c != '\n')
|
||||
printf("\n");
|
||||
fprintf(stderr, "\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -68,6 +68,7 @@
|
||||
#define log_very_verbose(args...) log_info(args)
|
||||
#define log_verbose(args...) log_notice(args)
|
||||
#define log_print(args...) LOG_LINE(_LOG_WARN, args)
|
||||
#define log_print_unless_silent(args...) LOG_LINE(silent_mode() ? _LOG_NOTICE : _LOG_WARN, args)
|
||||
#define log_error(args...) log_err(args)
|
||||
#define log_error_suppress(s, args...) log_err_suppress(s, args)
|
||||
#define log_error_once(args...) log_err_once(args)
|
||||
|
@ -2152,7 +2152,7 @@ int lv_add_virtual_segment(struct logical_volume *lv, uint64_t status,
|
||||
size = ((uint64_t)lv->vg->extent_size * extents + size - 1) /
|
||||
size * size / lv->vg->extent_size;
|
||||
if (size != extents) {
|
||||
log_print("Rounding size (%d extents) up to chunk boundary "
|
||||
log_print_unless_silent("Rounding size (%d extents) up to chunk boundary "
|
||||
"size (%d extents).", extents, size);
|
||||
extents = size;
|
||||
}
|
||||
@ -2738,7 +2738,7 @@ int lv_extend(struct logical_volume *lv,
|
||||
percent_t sync_percent = PERCENT_INVALID;
|
||||
|
||||
if (!lv_is_active(lv)) {
|
||||
log_print("%s/%s is not active."
|
||||
log_error("%s/%s is not active."
|
||||
" Unable to get sync percent.",
|
||||
lv->vg->name, lv->name);
|
||||
if (yes_no_prompt("Do full resync of extended "
|
||||
@ -3378,7 +3378,7 @@ int lv_remove_single(struct cmd_context *cmd, struct logical_volume *lv,
|
||||
backup(vg);
|
||||
|
||||
if (visible)
|
||||
log_print("Logical volume \"%s\" successfully removed", lv->name);
|
||||
log_print_unless_silent("Logical volume \"%s\" successfully removed", lv->name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
@ -4207,7 +4207,7 @@ static struct logical_volume *_lv_create_an_lv(struct volume_group *vg, struct l
|
||||
}
|
||||
|
||||
if ((size_rest = lp->extents % lp->stripes)) {
|
||||
log_print("Rounding size (%d extents) up to stripe boundary "
|
||||
log_print_unless_silent("Rounding size (%d extents) up to stripe boundary "
|
||||
"size (%d extents)", lp->extents,
|
||||
lp->extents - size_rest + lp->stripes);
|
||||
lp->extents = lp->extents - size_rest + lp->stripes;
|
||||
@ -4650,7 +4650,7 @@ int lv_create_single(struct volume_group *vg,
|
||||
return_0;
|
||||
|
||||
out:
|
||||
log_print("Logical volume \"%s\" created", lv->name);
|
||||
log_print_unless_silent("Logical volume \"%s\" created", lv->name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
@ -623,7 +623,7 @@ int vg_remove(struct volume_group *vg)
|
||||
stack;
|
||||
|
||||
if (ret)
|
||||
log_print("Volume group \"%s\" successfully removed", vg->name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully removed", vg->name);
|
||||
else
|
||||
log_error("Volume group \"%s\" not properly removed", vg->name);
|
||||
|
||||
@ -988,7 +988,7 @@ uint64_t extents_from_size(struct cmd_context *cmd, uint64_t size,
|
||||
{
|
||||
if (size % extent_size) {
|
||||
size += extent_size - size % extent_size;
|
||||
log_print("Rounding up size to full physical extent %s",
|
||||
log_print_unless_silent("Rounding up size to full physical extent %s",
|
||||
display_size(cmd, size));
|
||||
}
|
||||
|
||||
@ -1305,7 +1305,7 @@ static int _wipe_sb(struct device *dev, const char *type, const char *name,
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("Wiping %s on %s.", type, name);
|
||||
log_print_unless_silent("Wiping %s on %s.", type, name);
|
||||
if (!dev_set(dev, superblock, wipe_len, 0)) {
|
||||
log_error("Failed to wipe %s on %s.", type, name);
|
||||
return 0;
|
||||
@ -1477,7 +1477,7 @@ static int _pvcreate_write(struct cmd_context *cmd, struct pv_to_create *pvc)
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("Physical volume \"%s\" successfully created", pv_name);
|
||||
log_print_unless_silent("Physical volume \"%s\" successfully created", pv_name);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -168,7 +168,7 @@ uint32_t adjusted_mirror_region_size(uint32_t extent_size, uint32_t extents,
|
||||
|
||||
if (region_max < UINT32_MAX && region_size > region_max) {
|
||||
region_size = (uint32_t) region_max;
|
||||
log_print("Using reduced mirror region size of %" PRIu32
|
||||
log_print_unless_silent("Using reduced mirror region size of %" PRIu32
|
||||
" sectors", region_size);
|
||||
}
|
||||
|
||||
|
@ -1311,7 +1311,7 @@ int lv_raid_split_and_track(struct logical_volume *lv,
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("%s split from %s for read-only purposes.",
|
||||
log_print_unless_silent("%s split from %s for read-only purposes.",
|
||||
seg_lv(seg, s)->name, lv->name);
|
||||
|
||||
/* Resume original LV */
|
||||
@ -1325,7 +1325,7 @@ int lv_raid_split_and_track(struct logical_volume *lv,
|
||||
if (!_activate_sublv_preserving_excl(lv, seg_lv(seg, s)))
|
||||
return 0;
|
||||
|
||||
log_print("Use 'lvconvert --merge %s/%s' to merge back into %s",
|
||||
log_print_unless_silent("Use 'lvconvert --merge %s/%s' to merge back into %s",
|
||||
lv->vg->name, seg_lv(seg, s)->name, lv->name);
|
||||
return 1;
|
||||
}
|
||||
@ -1410,9 +1410,8 @@ int lv_raid_merge(struct logical_volume *image_lv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("%s/%s successfully merged back into %s/%s",
|
||||
vg->name, image_lv->name,
|
||||
vg->name, lv->name);
|
||||
log_print_unless_silent("%s/%s successfully merged back into %s/%s",
|
||||
vg->name, image_lv->name, vg->name, lv->name);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
static int _verbose_level = VERBOSE_BASE_LEVEL;
|
||||
static int _silent = 0;
|
||||
static int _test = 0;
|
||||
static int _md_filtering = 0;
|
||||
static int _pvmove = 0;
|
||||
@ -54,10 +55,15 @@ void init_verbose(int level)
|
||||
_verbose_level = level;
|
||||
}
|
||||
|
||||
void init_silent(int silent)
|
||||
{
|
||||
_silent = silent;
|
||||
}
|
||||
|
||||
void init_test(int level)
|
||||
{
|
||||
if (!_test && level)
|
||||
log_print("Test mode: Metadata will NOT be updated and volumes will not be (de)activated.");
|
||||
log_warn("TEST MODE: Metadata will NOT be updated and volumes will not be (de)activated.");
|
||||
_test = level;
|
||||
}
|
||||
|
||||
@ -267,6 +273,11 @@ int debug_level(void)
|
||||
return _debug_level;
|
||||
}
|
||||
|
||||
int silent_mode(void)
|
||||
{
|
||||
return _silent;
|
||||
}
|
||||
|
||||
unsigned is_static(void)
|
||||
{
|
||||
return _is_static;
|
||||
|
@ -21,6 +21,7 @@
|
||||
#define PV_MIN_SIZE_KB 512
|
||||
|
||||
void init_verbose(int level);
|
||||
void init_silent(int silent);
|
||||
void init_test(int level);
|
||||
void init_md_filtering(int level);
|
||||
void init_pvmove(int level);
|
||||
@ -55,6 +56,7 @@ int full_scan_done(void);
|
||||
int obtain_device_list_from_udev(void);
|
||||
int trust_cache(void);
|
||||
int verbose_level(void);
|
||||
int silent_mode(void);
|
||||
int debug_level(void);
|
||||
int ignorelockingfailure(void);
|
||||
int lockingfailed(void);
|
||||
|
@ -165,7 +165,7 @@ Set debug level. Repeat from 1 to 6 times to increase the detail of
|
||||
messages sent to the log file and/or syslog (if configured).
|
||||
Overrides config file setting.
|
||||
.TP
|
||||
.B \-\-quiet
|
||||
.BR \-q ", " \-\-quiet
|
||||
Suppress output and log messages.
|
||||
Overrides \fB\-d\fP and \fB\-v\fP.
|
||||
.TP
|
||||
|
@ -226,6 +226,12 @@ is invoked. By default tools append messages to the log file.
|
||||
\fBverbose\fP \(em Default level (0-3) of messages sent to stdout or stderr.
|
||||
3 is the most verbose; 0 should produce the least output.
|
||||
.IP
|
||||
\fBsilent\fP \(em Set to 1 to suppress all non-essential tool output.
|
||||
When set, display and reporting tools will still write the requested
|
||||
device properties to standard output, but messages confirming that
|
||||
something was or wasn't changed will be reduced to the 'verbose' level
|
||||
and not appear unless -v is supplied.
|
||||
.IP
|
||||
\fBsyslog\fP \(em Set to 1 (the default) to send log messages through syslog.
|
||||
Turn off by setting to 0. If you set to an integer greater than one,
|
||||
this is used - unvalidated - as the facility. The default is LOG_USER.
|
||||
|
@ -18,7 +18,6 @@
|
||||
*/
|
||||
/* *INDENT-OFF* */
|
||||
arg(version_ARG, '\0', "version", NULL, 0)
|
||||
arg(quiet_ARG, '\0', "quiet", NULL, 0)
|
||||
arg(physicalvolumesize_ARG, '\0', "setphysicalvolumesize", size_mb_arg, 0)
|
||||
arg(ignorelockingfailure_ARG, '\0', "ignorelockingfailure", NULL, 0)
|
||||
arg(nolocking_ARG, '\0', "nolocking", NULL, 0)
|
||||
@ -131,6 +130,7 @@ arg(permission_ARG, 'p', "permission", permission_arg, 0)
|
||||
arg(maxphysicalvolumes_ARG, 'p', "maxphysicalvolumes", int_arg, 0)
|
||||
arg(partial_ARG, 'P', "partial", NULL, 0)
|
||||
arg(physicalvolume_ARG, 'P', "physicalvolume", NULL, 0)
|
||||
arg(quiet_ARG, 'q', "quiet", NULL, ARG_COUNTABLE)
|
||||
arg(readahead_ARG, 'r', "readahead", readahead_arg, 0)
|
||||
arg(resizefs_ARG, 'r', "resizefs", NULL, 0)
|
||||
arg(reset_ARG, 'R', "reset", NULL, 0)
|
||||
|
@ -784,7 +784,7 @@ static int lvchange_single(struct cmd_context *cmd, struct logical_volume *lv,
|
||||
}
|
||||
|
||||
if (doit)
|
||||
log_print("Logical volume \"%s\" changed", lv->name);
|
||||
log_print_unless_silent("Logical volume \"%s\" changed", lv->name);
|
||||
|
||||
if (arg_count(cmd, resync_ARG))
|
||||
if (!lvchange_resync(cmd, lv)) {
|
||||
|
@ -548,7 +548,7 @@ static int _finish_lvconvert_mirror(struct cmd_context *cmd,
|
||||
if (!(_reload_lv(cmd, vg, lv)))
|
||||
return_0;
|
||||
|
||||
log_print("Logical volume %s converted.", lv->name);
|
||||
log_print_unless_silent("Logical volume %s converted.", lv->name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
@ -564,7 +564,7 @@ static int _finish_lvconvert_merge(struct cmd_context *cmd,
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("Merge of snapshot into logical volume %s has finished.", lv->name);
|
||||
log_print_unless_silent("Merge of snapshot into logical volume %s has finished.", lv->name);
|
||||
if (!lv_remove_single(cmd, snap_seg->cow, DONT_PROMPT)) {
|
||||
log_error("Could not remove snapshot %s merged into %s.",
|
||||
snap_seg->cow->name, lv->name);
|
||||
@ -593,7 +593,7 @@ static progress_t _poll_merge_progress(struct cmd_context *cmd,
|
||||
}
|
||||
|
||||
if (parms->progress_display)
|
||||
log_print("%s: %s: %.1f%%", lv->name, parms->progress_title,
|
||||
log_print_unless_silent("%s: %s: %.1f%%", lv->name, parms->progress_title,
|
||||
100.0 - percent_to_float(percent));
|
||||
else
|
||||
log_verbose("%s: %s: %.1f%%", lv->name, parms->progress_title,
|
||||
@ -1511,7 +1511,7 @@ static int _lvconvert_mirrors(struct cmd_context *cmd,
|
||||
return 0;
|
||||
|
||||
if (!lp->need_polling)
|
||||
log_print("Logical volume %s converted.", lv->name);
|
||||
log_print_unless_silent("Logical volume %s converted.", lv->name);
|
||||
|
||||
backup(lv->vg);
|
||||
return 1;
|
||||
@ -1638,7 +1638,7 @@ static int lvconvert_raid(struct logical_volume *lv, struct lvconvert_params *lp
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("Faulty devices in %s/%s successfully"
|
||||
log_print_unless_silent("Faulty devices in %s/%s successfully"
|
||||
" replaced.", lv->vg->name, lv->name);
|
||||
return 1;
|
||||
}
|
||||
@ -1703,7 +1703,7 @@ static int lvconvert_snapshot(struct cmd_context *cmd,
|
||||
if (!_reload_lv(cmd, lv->vg, lv))
|
||||
return_0;
|
||||
|
||||
log_print("Logical volume %s converted to snapshot.", lv->name);
|
||||
log_print_unless_silent("Logical volume %s converted to snapshot.", lv->name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
@ -1747,7 +1747,7 @@ static int lvconvert_merge(struct cmd_context *cmd,
|
||||
}
|
||||
if (lv_info(cmd, lv, 0, &info, 1, 0)) {
|
||||
if (info.open_count) {
|
||||
log_print("Can't merge when snapshot is open");
|
||||
log_print_unless_silent("Can't merge when snapshot is open");
|
||||
merge_on_activate = 1;
|
||||
}
|
||||
}
|
||||
@ -1763,7 +1763,7 @@ static int lvconvert_merge(struct cmd_context *cmd,
|
||||
if (!vg_commit(lv->vg))
|
||||
return_0;
|
||||
r = 1;
|
||||
log_print("Merging of snapshot %s will start "
|
||||
log_print_unless_silent("Merging of snapshot %s will start "
|
||||
"next activation.", lv->name);
|
||||
goto out;
|
||||
}
|
||||
@ -1790,7 +1790,7 @@ static int lvconvert_merge(struct cmd_context *cmd,
|
||||
lp->lv_to_poll = origin;
|
||||
|
||||
r = 1;
|
||||
log_print("Merging of volume %s started.", lv->name);
|
||||
log_print_unless_silent("Merging of volume %s started.", lv->name);
|
||||
out:
|
||||
backup(lv->vg);
|
||||
return r;
|
||||
@ -1892,7 +1892,7 @@ static int _lvconvert_thinpool(struct cmd_context *cmd,
|
||||
if (!vg_write(pool_lv->vg) || !vg_commit(pool_lv->vg))
|
||||
return_0;
|
||||
|
||||
log_print("Converted %s/%s to thin pool.",
|
||||
log_print_unless_silent("Converted %s/%s to thin pool.",
|
||||
pool_lv->vg->name, pool_lv->name);
|
||||
if (was_active && !activate_lv(cmd, pool_lv)) {
|
||||
log_error("Failed to activate pool logical volume %s/%s.",
|
||||
@ -2065,7 +2065,7 @@ static int poll_logical_volume(struct cmd_context *cmd, struct logical_volume *l
|
||||
struct lvinfo info;
|
||||
|
||||
if (!lv_info(cmd, lv, 0, &info, 0, 0) || !info.exists) {
|
||||
log_print("Conversion starts after activation.");
|
||||
log_print_unless_silent("Conversion starts after activation.");
|
||||
return ECMD_PROCESSED;
|
||||
}
|
||||
return lvconvert_poll(cmd, lv, wait_completion ? 0 : 1U);
|
||||
|
@ -301,7 +301,7 @@ static int _update_extents_params(struct volume_group *vg,
|
||||
if ((lcp->percent != PERCENT_NONE) && lp->stripes &&
|
||||
(size_rest = lp->extents % (lp->stripes * stripesize_extents)) &&
|
||||
(vg->free_count < lp->extents - size_rest + (lp->stripes * stripesize_extents))) {
|
||||
log_print("Rounding size (%d extents) down to stripe boundary "
|
||||
log_print_unless_silent("Rounding size (%d extents) down to stripe boundary "
|
||||
"size (%d extents)", lp->extents,
|
||||
lp->extents - size_rest);
|
||||
lp->extents = lp->extents - size_rest;
|
||||
@ -750,7 +750,7 @@ static int _lvcreate_params(struct lvcreate_params *lp,
|
||||
log_error("--mirrors must be at least 1 with segment type %s.", lp->segtype->name);
|
||||
return 0;
|
||||
}
|
||||
log_print("Redundant mirrors argument: default is 0");
|
||||
log_print_unless_silent("Redundant mirrors argument: default is 0");
|
||||
}
|
||||
|
||||
if ((lp->mirrors > 2) && !strcmp(lp->segtype->name, "raid10")) {
|
||||
|
@ -199,6 +199,7 @@ int lvm_shell(struct cmd_context *cmd, struct cmdline_context *cmdline)
|
||||
|
||||
/* EOF */
|
||||
if (!input) {
|
||||
/* readline sends prompt to stdout */
|
||||
printf("\n");
|
||||
break;
|
||||
}
|
||||
|
@ -847,6 +847,9 @@ static int _get_settings(struct cmd_context *cmd)
|
||||
cmd->current_settings.verbose = 0;
|
||||
}
|
||||
|
||||
if (arg_count(cmd, quiet_ARG) > 1)
|
||||
cmd->current_settings.silent = 1;
|
||||
|
||||
if (arg_count(cmd, test_ARG))
|
||||
cmd->current_settings.test = arg_count(cmd, test_ARG);
|
||||
|
||||
@ -863,7 +866,7 @@ static int _get_settings(struct cmd_context *cmd)
|
||||
|
||||
if (arg_count(cmd, partial_ARG)) {
|
||||
cmd->partial_activation = 1;
|
||||
log_print("Partial mode. Incomplete logical volumes will be processed.");
|
||||
log_warn("PARTIAL MODE. Incomplete logical volumes will be processed.");
|
||||
}
|
||||
|
||||
if (arg_count(cmd, ignorelockingfailure_ARG) || arg_count(cmd, sysinit_ARG))
|
||||
@ -966,6 +969,7 @@ static void _apply_settings(struct cmd_context *cmd)
|
||||
{
|
||||
init_debug(cmd->current_settings.debug);
|
||||
init_verbose(cmd->current_settings.verbose + VERBOSE_BASE_LEVEL);
|
||||
init_silent(cmd->current_settings.silent);
|
||||
init_test(cmd->current_settings.test);
|
||||
init_full_scan_done(0);
|
||||
init_mirror_in_sync(0);
|
||||
|
@ -133,7 +133,7 @@ int lvrename(struct cmd_context *cmd, int argc, char **argv)
|
||||
if (!lv_rename(cmd, lvl->lv, lv_name_new))
|
||||
goto error;
|
||||
|
||||
log_print("Renamed \"%s\" to \"%s\" in volume group \"%s\"",
|
||||
log_print_unless_silent("Renamed \"%s\" to \"%s\" in volume group \"%s\"",
|
||||
lv_name_old, lv_name_new, vg_name);
|
||||
|
||||
r = ECMD_PROCESSED;
|
||||
|
@ -466,7 +466,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
lp->size += vg->extent_size -
|
||||
(lp->size % vg->extent_size);
|
||||
|
||||
log_print("Rounding size to boundary between physical extents: %s",
|
||||
log_print_unless_silent("Rounding size to boundary between physical extents: %s",
|
||||
display_size(cmd, lp->size));
|
||||
}
|
||||
|
||||
@ -580,7 +580,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
}
|
||||
|
||||
if (!arg_count(cmd, mirrors_ARG) && seg_mirrors) {
|
||||
log_print("Extending %" PRIu32 " mirror images.",
|
||||
log_print_unless_silent("Extending %" PRIu32 " mirror images.",
|
||||
seg_mirrors);
|
||||
lp->mirrors = seg_mirrors;
|
||||
}
|
||||
@ -636,7 +636,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
|
||||
if (!lp->stripe_size && lp->stripes > 1) {
|
||||
if (seg_stripesize) {
|
||||
log_print("Using stripesize of last segment %s",
|
||||
log_print_unless_silent("Using stripesize of last segment %s",
|
||||
display_size(cmd, (uint64_t) seg_stripesize));
|
||||
lp->stripe_size = seg_stripesize;
|
||||
} else {
|
||||
@ -644,7 +644,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
find_config_tree_int(cmd,
|
||||
"metadata/stripesize",
|
||||
DEFAULT_STRIPESIZE) * 2;
|
||||
log_print("Using default stripesize %s",
|
||||
log_print_unless_silent("Using default stripesize %s",
|
||||
display_size(cmd, (uint64_t) lp->stripe_size));
|
||||
}
|
||||
}
|
||||
@ -703,14 +703,14 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
!lp->percent ||
|
||||
(vg->free_count >= (lp->extents - lv->le_count - size_rest +
|
||||
(lp->stripes * stripesize_extents))))) {
|
||||
log_print("Rounding size (%d extents) up to stripe "
|
||||
log_print_unless_silent("Rounding size (%d extents) up to stripe "
|
||||
"boundary size for segment (%d extents)",
|
||||
lp->extents, lp->extents - size_rest +
|
||||
(lp->stripes * stripesize_extents));
|
||||
lp->extents = lp->extents - size_rest +
|
||||
(lp->stripes * stripesize_extents);
|
||||
} else if (size_rest) {
|
||||
log_print("Rounding size (%d extents) down to stripe "
|
||||
log_print_unless_silent("Rounding size (%d extents) down to stripe "
|
||||
"boundary size for segment (%d extents)",
|
||||
lp->extents, lp->extents - size_rest);
|
||||
lp->extents = lp->extents - size_rest;
|
||||
@ -802,7 +802,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
return ECMD_FAILED;
|
||||
}
|
||||
|
||||
log_print("%sing logical volume %s to %s",
|
||||
log_print_unless_silent("%sing logical volume %s to %s",
|
||||
(lp->resize == LV_REDUCE) ? "Reduc" : "Extend",
|
||||
lp->lv_name,
|
||||
display_size(cmd, (uint64_t) lp->extents * vg->extent_size));
|
||||
@ -871,7 +871,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
|
||||
return ECMD_FAILED;
|
||||
}
|
||||
|
||||
log_print("Logical volume %s successfully resized", lp->lv_name);
|
||||
log_print_unless_silent("Logical volume %s successfully resized", lp->lv_name);
|
||||
|
||||
if (lp->resizefs && (lp->resize == LV_EXTEND) &&
|
||||
!_fsadm_cmd(cmd, vg, lp, FSADM_CMD_RESIZE, NULL)) {
|
||||
|
@ -59,7 +59,7 @@ static int lvscan_single(struct cmd_context *cmd, struct logical_volume *lv,
|
||||
else
|
||||
snapshot_str = " ";
|
||||
|
||||
log_print("%s%s '%s%s/%s' [%s] %s", active_str, snapshot_str,
|
||||
log_print_unless_silent("%s%s '%s%s/%s' [%s] %s", active_str, snapshot_str,
|
||||
cmd->dev_dir, lv->vg->name, lv->name,
|
||||
display_size(cmd, lv->size),
|
||||
get_alloc_string(lv->alloc));
|
||||
|
@ -108,7 +108,7 @@ progress_t poll_mirror_progress(struct cmd_context *cmd,
|
||||
|
||||
overall_percent = copy_percent(lv);
|
||||
if (parms->progress_display)
|
||||
log_print("%s: %s: %.1f%%", name, parms->progress_title,
|
||||
log_print_unless_silent("%s: %s: %.1f%%", name, parms->progress_title,
|
||||
percent_to_float(overall_percent));
|
||||
else
|
||||
log_verbose("%s: %s: %.1f%%", name, parms->progress_title,
|
||||
@ -213,7 +213,7 @@ static int _wait_for_single_lv(struct cmd_context *cmd, const char *name, const
|
||||
lv = parms->poll_fns->get_copy_lv(cmd, vg, name, uuid, parms->lv_type);
|
||||
|
||||
if (!lv && parms->lv_type == PVMOVE) {
|
||||
log_print("%s: no pvmove in progress - already finished or aborted.",
|
||||
log_print_unless_silent("%s: no pvmove in progress - already finished or aborted.",
|
||||
name);
|
||||
unlock_and_release_vg(cmd, vg, vg->name);
|
||||
return 1;
|
||||
|
@ -168,7 +168,7 @@ static int _pvchange_single(struct cmd_context *cmd, struct volume_group *vg,
|
||||
return 0;
|
||||
}
|
||||
|
||||
log_print("Physical volume \"%s\" changed", pv_name);
|
||||
log_print_unless_silent("Physical volume \"%s\" changed", pv_name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
@ -269,7 +269,7 @@ int pvchange(struct cmd_context *cmd, int argc, char **argv)
|
||||
unlock_vg(cmd, VG_GLOBAL);
|
||||
}
|
||||
|
||||
log_print("%d physical volume%s changed / %d physical volume%s "
|
||||
log_print_unless_silent("%d physical volume%s changed / %d physical volume%s "
|
||||
"not changed",
|
||||
done, done == 1 ? "" : "s",
|
||||
total - done, (total - done) == 1 ? "" : "s");
|
||||
|
@ -215,34 +215,34 @@ static struct logical_volume *_set_up_pvmove_lv(struct cmd_context *cmd,
|
||||
}
|
||||
if (lv_is_origin(lv) || lv_is_cow(lv)) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping snapshot-related LV %s", lv->name);
|
||||
log_print_unless_silent("Skipping snapshot-related LV %s", lv->name);
|
||||
continue;
|
||||
}
|
||||
if (lv->status & MIRRORED) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping mirror LV %s", lv->name);
|
||||
log_print_unless_silent("Skipping mirror LV %s", lv->name);
|
||||
continue;
|
||||
}
|
||||
if (lv->status & MIRROR_LOG) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping mirror log LV %s", lv->name);
|
||||
log_print_unless_silent("Skipping mirror log LV %s", lv->name);
|
||||
continue;
|
||||
}
|
||||
if (lv->status & MIRROR_IMAGE) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping mirror image LV %s", lv->name);
|
||||
log_print_unless_silent("Skipping mirror image LV %s", lv->name);
|
||||
continue;
|
||||
}
|
||||
if (lv->status & LOCKED) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping locked LV %s", lv->name);
|
||||
log_print_unless_silent("Skipping locked LV %s", lv->name);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (vg_is_clustered(vg) &&
|
||||
lv_is_active_exclusive_remotely(lv)) {
|
||||
lv_skipped = 1;
|
||||
log_print("Skipping LV %s which is activated "
|
||||
log_print_unless_silent("Skipping LV %s which is activated "
|
||||
"exclusively on remote node.", lv->name);
|
||||
continue;
|
||||
}
|
||||
@ -512,7 +512,7 @@ static int _set_up_pvmove(struct cmd_context *cmd, const char *pv_name,
|
||||
exclusive = _pvmove_is_exclusive(cmd, vg);
|
||||
|
||||
if ((lv_mirr = find_pvmove_lv(vg, pv_dev(pv), PVMOVE))) {
|
||||
log_print("Detected pvmove in progress for %s", pv_name);
|
||||
log_print_unless_silent("Detected pvmove in progress for %s", pv_name);
|
||||
if (argc || lv_name)
|
||||
log_error("Ignoring remaining command line arguments");
|
||||
|
||||
|
@ -131,7 +131,7 @@ static int pvremove_single(struct cmd_context *cmd, const char *pv_name,
|
||||
if (!lvmetad_pv_gone_by_dev(dev, NULL))
|
||||
goto_out;
|
||||
|
||||
log_print("Labels on physical volume \"%s\" successfully wiped",
|
||||
log_print_unless_silent("Labels on physical volume \"%s\" successfully wiped",
|
||||
pv_name);
|
||||
|
||||
ret = ECMD_PROCESSED;
|
||||
|
@ -118,7 +118,7 @@ static int _pv_resize_single(struct cmd_context *cmd,
|
||||
backup(vg);
|
||||
}
|
||||
|
||||
log_print("Physical volume \"%s\" changed", pv_name);
|
||||
log_print_unless_silent("Physical volume \"%s\" changed", pv_name);
|
||||
r = 1;
|
||||
|
||||
out:
|
||||
@ -176,7 +176,7 @@ int pvresize(struct cmd_context *cmd, int argc, char **argv)
|
||||
ret = process_each_pv(cmd, argc, argv, NULL, READ_FOR_UPDATE, 0, ¶ms,
|
||||
_pvresize_single);
|
||||
|
||||
log_print("%d physical volume(s) resized / %d physical volume(s) "
|
||||
log_print_unless_silent("%d physical volume(s) resized / %d physical volume(s) "
|
||||
"not resized", params.done, params.total - params.done);
|
||||
|
||||
return ret;
|
||||
|
@ -34,7 +34,7 @@ static void _pvscan_display_single(struct cmd_context *cmd,
|
||||
|
||||
/* short listing? */
|
||||
if (arg_count(cmd, short_ARG) > 0) {
|
||||
log_print("%s", pv_dev_name(pv));
|
||||
log_print_unless_silent("%s", pv_dev_name(pv));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -64,7 +64,7 @@ static void _pvscan_display_single(struct cmd_context *cmd,
|
||||
}
|
||||
|
||||
if (is_orphan(pv)) {
|
||||
log_print("PV %-*s %-*s %s [%s]",
|
||||
log_print_unless_silent("PV %-*s %-*s %s [%s]",
|
||||
pv_max_name_len, pv_tmp_name,
|
||||
vg_max_name_len, " ",
|
||||
pv->fmt ? pv->fmt->name : " ",
|
||||
@ -74,27 +74,21 @@ static void _pvscan_display_single(struct cmd_context *cmd,
|
||||
|
||||
if (pv_status(pv) & EXPORTED_VG) {
|
||||
strncpy(vg_name_this, pv_vg_name(pv), vg_name_len);
|
||||
log_print("PV %-*s is in exported VG %s "
|
||||
log_print_unless_silent("PV %-*s is in exported VG %s "
|
||||
"[%s / %s free]",
|
||||
pv_max_name_len, pv_tmp_name,
|
||||
vg_name_this,
|
||||
display_size(cmd, (uint64_t) pv_pe_count(pv) *
|
||||
pv_pe_size(pv)),
|
||||
display_size(cmd, (uint64_t) (pv_pe_count(pv) -
|
||||
pv_pe_alloc_count(pv))
|
||||
* pv_pe_size(pv)));
|
||||
display_size(cmd, (uint64_t) pv_pe_count(pv) * pv_pe_size(pv)),
|
||||
display_size(cmd, (uint64_t) (pv_pe_count(pv) - pv_pe_alloc_count(pv)) * pv_pe_size(pv)));
|
||||
return;
|
||||
}
|
||||
|
||||
sprintf(vg_tmp_name, "%s", pv_vg_name(pv));
|
||||
log_print("PV %-*s VG %-*s %s [%s / %s free]", pv_max_name_len,
|
||||
log_print_unless_silent("PV %-*s VG %-*s %s [%s / %s free]", pv_max_name_len,
|
||||
pv_tmp_name, vg_max_name_len, vg_tmp_name,
|
||||
pv->fmt ? pv->fmt->name : " ",
|
||||
display_size(cmd, (uint64_t) pv_pe_count(pv) *
|
||||
pv_pe_size(pv)),
|
||||
display_size(cmd, (uint64_t) (pv_pe_count(pv) -
|
||||
pv_pe_alloc_count(pv)) *
|
||||
pv_pe_size(pv)));
|
||||
display_size(cmd, (uint64_t) pv_pe_count(pv) * pv_pe_size(pv)),
|
||||
display_size(cmd, (uint64_t) (pv_pe_count(pv) - pv_pe_alloc_count(pv)) * pv_pe_size(pv)));
|
||||
}
|
||||
|
||||
static int _auto_activation_handler(struct volume_group *vg, int partial,
|
||||
@ -223,7 +217,7 @@ static int _pvscan_lvmetad(struct cmd_context *cmd, int argc, char **argv)
|
||||
break;
|
||||
}
|
||||
|
||||
log_print("Device %s not found. "
|
||||
log_print_unless_silent("Device %s not found. "
|
||||
"Cleared from lvmetad cache.", buf ? : "");
|
||||
if (buf)
|
||||
dm_free(buf);
|
||||
@ -355,12 +349,12 @@ int pvscan(struct cmd_context *cmd, int argc, char **argv)
|
||||
}
|
||||
|
||||
if (!pvs_found) {
|
||||
log_print("No matching physical volumes found");
|
||||
log_print_unless_silent("No matching physical volumes found");
|
||||
unlock_vg(cmd, VG_GLOBAL);
|
||||
return ECMD_PROCESSED;
|
||||
}
|
||||
|
||||
log_print("Total: %d [%s] / in use: %d [%s] / in no VG: %d [%s]",
|
||||
log_print_unless_silent("Total: %d [%s] / in use: %d [%s] / in no VG: %d [%s]",
|
||||
pvs_found,
|
||||
display_size(cmd, size_total),
|
||||
pvs_found - new_pvs_found,
|
||||
|
@ -1527,13 +1527,13 @@ static int _validate_stripe_params(struct cmd_context *cmd, uint32_t *stripes,
|
||||
uint32_t *stripe_size)
|
||||
{
|
||||
if (*stripes == 1 && *stripe_size) {
|
||||
log_print("Ignoring stripesize argument with single stripe");
|
||||
log_print_unless_silent("Ignoring stripesize argument with single stripe");
|
||||
*stripe_size = 0;
|
||||
}
|
||||
|
||||
if (*stripes > 1 && !*stripe_size) {
|
||||
*stripe_size = find_config_tree_int(cmd, "metadata/stripesize", DEFAULT_STRIPESIZE) * 2;
|
||||
log_print("Using default stripesize %s",
|
||||
log_print_unless_silent("Using default stripesize %s",
|
||||
display_size(cmd, (uint64_t) *stripe_size));
|
||||
}
|
||||
|
||||
|
@ -81,7 +81,7 @@ static int vg_backup_single(struct cmd_context *cmd, const char *vg_name,
|
||||
}
|
||||
}
|
||||
|
||||
log_print("Volume group \"%s\" successfully backed up.", vg_name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully backed up.", vg_name);
|
||||
return ECMD_PROCESSED;
|
||||
}
|
||||
|
||||
|
@ -70,7 +70,7 @@ int vgcfgrestore(struct cmd_context *cmd, int argc, char **argv)
|
||||
return ECMD_FAILED;
|
||||
}
|
||||
|
||||
log_print("Restored volume group %s", vg_name);
|
||||
log_print_unless_silent("Restored volume group %s", vg_name);
|
||||
|
||||
unlock_vg(cmd, VG_ORPHANS);
|
||||
unlock_vg(cmd, vg_name);
|
||||
|
@ -194,7 +194,7 @@ static int _vgchange_monitoring(struct cmd_context *cmd, struct volume_group *vg
|
||||
dmeventd_monitor_mode() != DMEVENTD_MONITOR_IGNORE) {
|
||||
if (!_monitor_lvs_in_vg(cmd, vg, dmeventd_monitor_mode(), &monitored))
|
||||
r = 0;
|
||||
log_print("%d logical volume(s) in volume group "
|
||||
log_print_unless_silent("%d logical volume(s) in volume group "
|
||||
"\"%s\" %smonitored",
|
||||
monitored, vg->name, (dmeventd_monitor_mode()) ? "" : "un");
|
||||
}
|
||||
@ -209,7 +209,7 @@ static int _vgchange_background_polling(struct cmd_context *cmd, struct volume_g
|
||||
if (lvs_in_vg_activated(vg) && background_polling()) {
|
||||
polled = _poll_lvs_in_vg(cmd, vg);
|
||||
if (polled)
|
||||
log_print("Background polling started for %d logical volume(s) "
|
||||
log_print_unless_silent("Background polling started for %d logical volume(s) "
|
||||
"in volume group \"%s\"",
|
||||
polled, vg->name);
|
||||
}
|
||||
@ -260,7 +260,7 @@ int vgchange_activate(struct cmd_context *cmd, struct volume_group *vg,
|
||||
|
||||
/* Print message only if there was not found a missing VG */
|
||||
if (!vg->cmd_missing_vgs)
|
||||
log_print("%d logical volume(s) in volume group \"%s\" now active",
|
||||
log_print_unless_silent("%d logical volume(s) in volume group \"%s\" now active",
|
||||
lvs_in_vg_activated(vg), vg->name);
|
||||
return r;
|
||||
}
|
||||
@ -508,7 +508,7 @@ static int vgchange_single(struct cmd_context *cmd, const char *vg_name,
|
||||
|
||||
backup(vg);
|
||||
|
||||
log_print("Volume group \"%s\" successfully changed", vg->name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully changed", vg->name);
|
||||
}
|
||||
|
||||
if (arg_count(cmd, activate_ARG)) {
|
||||
|
@ -186,7 +186,7 @@ static int vgconvert_single(struct cmd_context *cmd, const char *vg_name,
|
||||
"archived metadata.");
|
||||
return ECMD_FAILED;
|
||||
}
|
||||
log_print("Volume group %s successfully converted", vg_name);
|
||||
log_print_unless_silent("Volume group %s successfully converted", vg_name);
|
||||
|
||||
backup(vg);
|
||||
|
||||
|
@ -119,7 +119,7 @@ int vgcreate(struct cmd_context *cmd, int argc, char **argv)
|
||||
|
||||
backup(vg);
|
||||
|
||||
log_print("%s%colume group \"%s\" successfully created",
|
||||
log_print_unless_silent("%s%colume group \"%s\" successfully created",
|
||||
clustered_message, *clustered_message ? 'v' : 'V', vg->name);
|
||||
|
||||
release_vg(vg);
|
||||
|
@ -44,7 +44,7 @@ static int vgexport_single(struct cmd_context *cmd __attribute__((unused)),
|
||||
|
||||
backup(vg);
|
||||
|
||||
log_print("Volume group \"%s\" successfully exported", vg->name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully exported", vg->name);
|
||||
|
||||
return ECMD_PROCESSED;
|
||||
|
||||
|
@ -134,7 +134,7 @@ int vgextend(struct cmd_context *cmd, int argc, char **argv)
|
||||
goto_bad;
|
||||
|
||||
backup(vg);
|
||||
log_print("Volume group \"%s\" successfully extended", vg_name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully extended", vg_name);
|
||||
r = ECMD_PROCESSED;
|
||||
|
||||
bad:
|
||||
|
@ -48,7 +48,7 @@ static int vgimport_single(struct cmd_context *cmd __attribute__((unused)),
|
||||
|
||||
backup(vg);
|
||||
|
||||
log_print("Volume group \"%s\" successfully imported", vg->name);
|
||||
log_print_unless_silent("Volume group \"%s\" successfully imported", vg->name);
|
||||
|
||||
return ECMD_PROCESSED;
|
||||
|
||||
|
@ -148,7 +148,7 @@ static int _vgmerge_single(struct cmd_context *cmd, const char *vg_name_to,
|
||||
/* FIXME Remove /dev/vgfrom */
|
||||
|
||||
backup(vg_to);
|
||||
log_print("Volume group \"%s\" successfully merged into \"%s\"",
|
||||
log_print_unless_silent("Volume group \"%s\" successfully merged into \"%s\"",
|
||||
vg_from->name, vg_to->name);
|
||||
r = ECMD_PROCESSED;
|
||||
bad:
|
||||
|
@ -193,7 +193,7 @@ static int _vgreduce_single(struct cmd_context *cmd, struct volume_group *vg,
|
||||
|
||||
backup(vg);
|
||||
|
||||
log_print("Removed \"%s\" from volume group \"%s\"", name, vg->name);
|
||||
log_print_unless_silent("Removed \"%s\" from volume group \"%s\"", name, vg->name);
|
||||
r = ECMD_PROCESSED;
|
||||
bad:
|
||||
if (pvl)
|
||||
@ -304,7 +304,7 @@ int vgreduce(struct cmd_context *cmd, int argc, char **argv)
|
||||
backup(vg);
|
||||
|
||||
if (fixed) {
|
||||
log_print("Wrote out consistent volume group %s",
|
||||
log_print_unless_silent("Wrote out consistent volume group %s",
|
||||
vg_name);
|
||||
ret = ECMD_PROCESSED;
|
||||
} else
|
||||
|
@ -177,7 +177,7 @@ static int vg_rename_path(struct cmd_context *cmd, const char *old_vg_path,
|
||||
unlock_vg(cmd, vg_name_new);
|
||||
unlock_and_release_vg(cmd, vg, vg_name_old);
|
||||
|
||||
log_print("Volume group \"%s\" successfully renamed to \"%s\"",
|
||||
log_print_unless_silent("Volume group \"%s\" successfully renamed to \"%s\"",
|
||||
vg_name_old, vg_name_new);
|
||||
|
||||
/* FIXME lvmcache corruption - vginfo duplicated instead of renamed */
|
||||
|
@ -21,7 +21,7 @@ static int vgscan_single(struct cmd_context *cmd, const char *vg_name,
|
||||
struct volume_group *vg,
|
||||
void *handle __attribute__((unused)))
|
||||
{
|
||||
log_print("Found %svolume group \"%s\" using metadata type %s",
|
||||
log_print_unless_silent("Found %svolume group \"%s\" using metadata type %s",
|
||||
vg_is_exported(vg) ? "exported " : "", vg_name,
|
||||
vg->fid->fmt->name);
|
||||
|
||||
@ -64,7 +64,7 @@ int vgscan(struct cmd_context *cmd, int argc, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
log_print("Reading all physical volumes. This may take a while...");
|
||||
log_print_unless_silent("Reading all physical volumes. This may take a while...");
|
||||
|
||||
maxret = process_each_vg(cmd, argc, argv, 0, NULL,
|
||||
&vgscan_single);
|
||||
|
@ -493,7 +493,7 @@ int vgsplit(struct cmd_context *cmd, int argc, char **argv)
|
||||
|
||||
backup(vg_to);
|
||||
|
||||
log_print("%s volume group \"%s\" successfully split from \"%s\"",
|
||||
log_print_unless_silent("%s volume group \"%s\" successfully split from \"%s\"",
|
||||
existing_vg ? "Existing" : "New",
|
||||
vg_to->name, vg_from->name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user