From: Peter Rajnoha <prajnoha@redhat.com>
To: lvm-devel@redhat.com
Subject: master - coverity: check for profile
Date: Wed, 7 May 2014 08:33:42 -0400 (EDT) [thread overview]
Message-ID: <1880427768.1808643.1399466022604.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20140507121858.B603F607BC@fedorahosted.org>
On 05/07/2014 02:19 PM, Zdenek Kabelac wrote:> - str = find_config_tree_str(cmd, allocation_thin_pool_chunk_size_policy_CFG, profile);
> + if (!(str = find_config_tree_str(cmd, allocation_thin_pool_chunk_size_policy_CFG, profile))) {
> + log_error(INTERNAL_ERROR "Cannot find profile.");
> + return 0;
> + }
>
> if (!strcasecmp(str, "generic"))
> chunk_size = DEFAULT_THIN_POOL_CHUNK_SIZE;
> diff --git a/lib/metadata/thin_manip.c b/lib/metadata/thin_manip.c
> index 78231a2..c1c90b4 100644
> --- a/lib/metadata/thin_manip.c
> +++ b/lib/metadata/thin_manip.c
> @@ -375,7 +375,10 @@ int update_profilable_pool_params(struct cmd_context *cmd, struct profile *profi
>
> if (!(passed_args & PASS_ARG_CHUNK_SIZE)) {
> if (!(*chunk_size = find_config_tree_int(cmd, allocation_thin_pool_chunk_size_CFG, profile) * 2)) {
> - str = find_config_tree_str(cmd, allocation_thin_pool_chunk_size_policy_CFG, profile);
> + if (!(str = find_config_tree_str(cmd, allocation_thin_pool_chunk_size_policy_CFG, profile))) {
> + log_error(INTERNAL_ERROR "Could not find profile.");
> + return 0;
> + }
> if (!strcasecmp(str, "generic"))
> *chunk_size_calc_method = THIN_CHUNK_SIZE_CALC_METHOD_GENERIC;
> else if (!strcasecmp(str, "performance"))
> @@ -397,7 +400,10 @@ int update_profilable_pool_params(struct cmd_context *cmd, struct profile *profi
> }
>
> if (!(passed_args & PASS_ARG_DISCARDS)) {
> - str = find_config_tree_str(cmd, allocation_thin_pool_discards_CFG, profile);
> + if (!(str = find_config_tree_str(cmd, allocation_thin_pool_discards_CFG, profile))) {
> + log_error(INTERNAL_ERROR "Could not find profile.");
> + return 0;
> + }
Well, the message is not quite correct since it's not just about profile.
The actual sequence here when looking for the config value is:
1 - --config
2 - --profile
3 - profile directly attached to VG/LV
4 - lvm.conf (including tag configs)
5 - default
(And default is always defined for thin_pool_chunk_size_policy and thin_pool_discards.
So actually, the error path there is never hit in real...)
--
Peter
prev parent reply other threads:[~2014-05-07 12:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-07 12:18 master - coverity: check for profile Zdenek Kabelac
2014-05-07 12:33 ` Peter Rajnoha [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1880427768.1808643.1399466022604.JavaMail.zimbra@redhat.com \
--to=prajnoha@redhat.com \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.