Re: [PATCH] btrfs: Fix -Wunused-but-set-variable warnings

From: David Sterba
Date: Mon Jun 03 2019 - 08:24:52 EST


On Fri, May 31, 2019 at 10:53:49PM +0300, Andrey Abramov wrote:
> Fix -Wunused-but-set-variable warnings in raid56.c and sysfs.c files

Please ignore the warnings for now. The RAID56 needs more cleanups than
that an the sysfs part needs to be reworked. The stale code comes from
e410e34fad913dd568ec28d2a9949694324c14db that reverted
14e46e04958df740c6c6a94849f176159a333f13.

> Signed-off-by: Andrey Abramov <st5pub@xxxxxxxxx>
> ---
> fs/btrfs/raid56.c | 32 +++++++++++---------------------
> fs/btrfs/sysfs.c | 5 +----
> 2 files changed, 12 insertions(+), 25 deletions(-)
>
> diff --git a/fs/btrfs/raid56.c b/fs/btrfs/raid56.c
> index f3d0576dd327..4ab29eacfdf3 100644
> --- a/fs/btrfs/raid56.c
> +++ b/fs/btrfs/raid56.c
> @@ -1182,22 +1182,17 @@ static noinline void finish_rmw(struct btrfs_raid_bio *rbio)
> int nr_data = rbio->nr_data;
> int stripe;
> int pagenr;
> - int p_stripe = -1;
> - int q_stripe = -1;
> + int is_q_stripe = 0;
> struct bio_list bio_list;
> struct bio *bio;
> int ret;
>
> bio_list_init(&bio_list);
>
> - if (rbio->real_stripes - rbio->nr_data == 1) {
> - p_stripe = rbio->real_stripes - 1;
> - } else if (rbio->real_stripes - rbio->nr_data == 2) {
> - p_stripe = rbio->real_stripes - 2;
> - q_stripe = rbio->real_stripes - 1;
> - } else {
> + if (rbio->real_stripes - rbio->nr_data == 2)
> + is_q_stripe = 1;
> + else if (rbio->real_stripes - rbio->nr_data != 1)
> BUG();
> - }

The original code is better structured, enumerates the expected cases
and leaves a catch-all branch.

>
> /* at this point we either have a full stripe,
> * or we've read the full stripe from the drive.
> @@ -1241,7 +1236,7 @@ static noinline void finish_rmw(struct btrfs_raid_bio *rbio)
> SetPageUptodate(p);
> pointers[stripe++] = kmap(p);
>
> - if (q_stripe != -1) {
> + if (is_q_stripe) {
>
> /*
> * raid6, add the qstripe and call the
> @@ -2340,8 +2335,7 @@ static noinline void finish_parity_scrub(struct btrfs_raid_bio *rbio,
> int nr_data = rbio->nr_data;
> int stripe;
> int pagenr;
> - int p_stripe = -1;

To get rid of the warning, perhaps just this initialization could be
removed, the rest of the code untouched.

> - int q_stripe = -1;
> + int is_q_stripe = 0;
> struct page *p_page = NULL;
> struct page *q_page = NULL;
> struct bio_list bio_list;