mirror of
https://github.com/ceph/ceph
synced 2025-01-03 01:22:53 +00:00
misc language changes: whitelist -> ignore etc
Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
parent
5465c77d5f
commit
c7244e7aad
@ -525,7 +525,7 @@ Operations:
|
||||
Clears manifest chunks or redirect. Lazily releases references, may
|
||||
leak.
|
||||
|
||||
do_osd_ops seems not to include it in the user_modify=false whitelist,
|
||||
do_osd_ops seems not to include it in the user_modify=false ignorelist,
|
||||
and so will trigger a snapshot. Note, this will be true even for a
|
||||
redirect though SET_REDIRECT does not flip user_modify. This should
|
||||
be fixed -- unset-manifest should not be a user_modify.
|
||||
@ -538,7 +538,7 @@ Operations:
|
||||
|
||||
rados -p base_pool tier-flush <obj-name>
|
||||
|
||||
Included in the user_modify=false whitelist, does not trigger a clone.
|
||||
Included in the user_modify=false ignorelist, does not trigger a clone.
|
||||
|
||||
Does not evict the extents.
|
||||
|
||||
|
@ -20,7 +20,7 @@ overrides:
|
||||
- overall HEALTH_
|
||||
# valgrind is slow.. we might get PGs stuck peering etc
|
||||
- \(PG_
|
||||
# mons sometimes are left off of initial quorum due to valgrind slowness. ok to whitelist here because we'll still catch an actual crash due to the core
|
||||
# mons sometimes are left off of initial quorum due to valgrind slowness. ok to ignore here because we'll still catch an actual crash due to the core
|
||||
- \(MON_DOWN\)
|
||||
- \(SLOW_OPS\)
|
||||
- slow request
|
||||
|
@ -186,7 +186,7 @@ void MgrCapGrant::expand_profile(std::ostream *err) const {
|
||||
perms = mgr_rwxa_t{MGR_CAP_R | MGR_CAP_W};
|
||||
}
|
||||
|
||||
// whitelist all 'rbd_support' commands (restricted by optional
|
||||
// allow all 'rbd_support' commands (restricted by optional
|
||||
// pool/namespace constraints)
|
||||
profile_grants.push_back({{}, "rbd_support", {}, {},
|
||||
std::move(filtered_arguments), perms});
|
||||
|
@ -3184,7 +3184,7 @@ void Monitor::handle_tell_command(MonOpRequestRef op)
|
||||
"please check usage and/or man page");
|
||||
}
|
||||
}
|
||||
// see if command is whitelisted
|
||||
// see if command is allowed
|
||||
if (!session->caps.is_capable(
|
||||
g_ceph_context,
|
||||
session->entity_name,
|
||||
@ -4250,7 +4250,7 @@ void Monitor::waitlist_or_zap_client(MonOpRequestRef op)
|
||||
* tick() will periodically send them back through so we can send
|
||||
* the client elsewhere if we don't think we're getting back in.
|
||||
*
|
||||
* But we whitelist a few sorts of messages:
|
||||
* But we allow a few sorts of messages:
|
||||
* 1) Monitors can talk to us at any time, of course.
|
||||
* 2) auth messages. It's unlikely to go through much faster, but
|
||||
* it's possible we've just lost our quorum status and we want to take...
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
|
||||
/*
|
||||
* whitelist utility. Config string is a list of entries, where an entry is either an item,
|
||||
* allowlist utility. Config string is a list of entries, where an entry is either an item,
|
||||
* a prefix, or a suffix. An item would be the name of the entity that we'd look up,
|
||||
* a prefix would be a string ending with an asterisk, a suffix would be a string starting
|
||||
* with an asterisk. For example:
|
||||
|
Loading…
Reference in New Issue
Block a user