From: Paul Menzel <pm.debian@googlemail.com>
To: Tim Gardner <tim.gardner@canonical.com>
Cc: linux-kernel@vger.kernel.org, Alasdair Kergon <agk@redhat.com>,
dm-devel@redhat.com, Neil Brown <neilb@suse.de>,
linux-raid@vger.kernel.org
Subject: Re: [PATCH linux-next] DM RAID: validate_raid_redundancy: Silence uninitialized variable warning
Date: Wed, 20 Feb 2013 23:18:45 +0100 [thread overview]
Message-ID: <1361398725.4895.27.camel@mattotaupa> (raw)
In-Reply-To: <1361398597.4895.24.camel@mattotaupa>
[-- Attachment #1: Type: text/plain, Size: 1862 bytes --]
Dear Tim,
Am Mittwoch, den 20.02.2013, 23:16 +0100 schrieb Paul Menzel:
> Am Mittwoch, den 20.02.2013, 13:31 -0700 schrieb Tim Gardner:
>
> Noting the `gcc` version and build environment is never wrong. ;-)
>
> > drivers/md/dm-raid.c: In function 'raid_ctr':
> > drivers/md/dm-raid.c:453:53: warning: 'rebuilds_per_group' may be used uninitialized in this function [-Wuninitialized]
> > drivers/md/dm-raid.c:383:11: note: 'rebuilds_per_group' was declared here
> >
> > It appears unlikely that rebuilds_per_group could be used before set,
>
> Why? Otherwise the compiler would not complain, right?
>
> > but set it to 0 anyways just to shutup GCC.
>
> Unfortunately I do not know what linux-next version you tested, so the
> line numbers are off in.
>
> $ git describe
> v3.7.5-4-g9c2ab66
See below …
> > Cc: Alasdair Kergon <agk@redhat.com>
> > Cc: dm-devel@redhat.com
> > Cc: Neil Brown <neilb@suse.de>
> > Cc: linux-raid@vger.kernel.org
> > Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
> > ---
> > drivers/md/dm-raid.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c
> > index 9d6bf19..8005caf 100644
Git to the rescue. I guess I should be able to find that commit to make
sense of the line numbers.
> > --- a/drivers/md/dm-raid.c
> > +++ b/drivers/md/dm-raid.c
> > @@ -380,7 +380,7 @@ static int validate_region_size(struct raid_set *rs, unsigned long region_size)
> > static int validate_raid_redundancy(struct raid_set *rs)
> > {
> > unsigned i, rebuild_cnt = 0;
> > - unsigned rebuilds_per_group, copies, d;
> > + unsigned rebuilds_per_group = 0, copies, d;
> > unsigned group_size, last_group_start;
> >
> > for (i = 0; i < rs->md.raid_disks; i++)
Thanks,
Paul
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next prev parent reply other threads:[~2013-02-20 22:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-20 20:31 [PATCH linux-next] DM RAID: validate_raid_redundancy: Silence uninitialized variable warning Tim Gardner
2013-02-20 22:16 ` Paul Menzel
2013-02-20 22:18 ` Paul Menzel [this message]
2013-02-20 22:37 ` NeilBrown
2013-02-21 13:19 ` [dm-devel] " Alasdair G Kergon
2013-02-21 14:50 ` [PATCH linux-next v2] " Tim Gardner
2013-06-13 15:30 ` Tommi Rantala
2013-06-13 16:00 ` Tim Gardner
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=1361398725.4895.27.camel@mattotaupa \
--to=pm.debian@googlemail.com \
--cc=agk@redhat.com \
--cc=dm-devel@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=neilb@suse.de \
--cc=tim.gardner@canonical.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).