All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel: power: swap: fix sparse warnings
@ 2021-10-07 19:13 Anders Roxell
  2021-10-21 10:49 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: Anders Roxell @ 2021-10-07 19:13 UTC (permalink / raw)
  To: rafael, len.brown, pavel; +Cc: linux-pm, linux-kernel, Anders Roxell

When building the kernel with sparse enabled 'C=1' the following
warnings shows up:

kernel/power/swap.c:390:29: warning: incorrect type in assignment (different base types)
kernel/power/swap.c:390:29:    expected int ret
kernel/power/swap.c:390:29:    got restricted blk_status_t

This is due to function hib_wait_io() returns a 'blk_status_t' which is
a bitwise u8. Commit 5416da01ff6e ("PM: hibernate: Remove
blk_status_to_errno in hib_wait_io") seemed to have mixed up the return
type. However, the 4e4cbee93d56 ("block: switch bios to blk_status_t")
actually broke the behaviour by returning the wrong type.

Rework so function hib_wait_io() returns a 'int' instead of
'blk_status_t' and make sure to call function
blk_status_to_errno(hb->error)' when returning from function
hib_wait_io() a int gets returned.

Fixes: 4e4cbee93d56 ("block: switch bios to blk_status_t")
Fixes: 5416da01ff6e ("PM: hibernate: Remove blk_status_to_errno in hib_wait_io")
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
---
 kernel/power/swap.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/power/swap.c b/kernel/power/swap.c
index 9ec418955556..47107f9cd14c 100644
--- a/kernel/power/swap.c
+++ b/kernel/power/swap.c
@@ -299,14 +299,14 @@ static int hib_submit_io(int op, int op_flags, pgoff_t page_off, void *addr,
 	return error;
 }
 
-static blk_status_t hib_wait_io(struct hib_bio_batch *hb)
+static int hib_wait_io(struct hib_bio_batch *hb)
 {
 	/*
 	 * We are relying on the behavior of blk_plug that a thread with
 	 * a plug will flush the plug list before sleeping.
 	 */
 	wait_event(hb->wait, atomic_read(&hb->count) == 0);
-	return hb->error;
+	return blk_status_to_errno(hb->error);
 }
 
 /*
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] kernel: power: swap: fix sparse warnings
  2021-10-07 19:13 [PATCH] kernel: power: swap: fix sparse warnings Anders Roxell
@ 2021-10-21 10:49 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2021-10-21 10:49 UTC (permalink / raw)
  To: Anders Roxell
  Cc: Rafael J. Wysocki, Len Brown, Pavel Machek, Linux PM,
	Linux Kernel Mailing List

On Thu, Oct 7, 2021 at 9:13 PM Anders Roxell <anders.roxell@linaro.org> wrote:
>
> When building the kernel with sparse enabled 'C=1' the following
> warnings shows up:
>
> kernel/power/swap.c:390:29: warning: incorrect type in assignment (different base types)
> kernel/power/swap.c:390:29:    expected int ret
> kernel/power/swap.c:390:29:    got restricted blk_status_t
>
> This is due to function hib_wait_io() returns a 'blk_status_t' which is
> a bitwise u8. Commit 5416da01ff6e ("PM: hibernate: Remove
> blk_status_to_errno in hib_wait_io") seemed to have mixed up the return
> type. However, the 4e4cbee93d56 ("block: switch bios to blk_status_t")
> actually broke the behaviour by returning the wrong type.
>
> Rework so function hib_wait_io() returns a 'int' instead of
> 'blk_status_t' and make sure to call function
> blk_status_to_errno(hb->error)' when returning from function
> hib_wait_io() a int gets returned.
>
> Fixes: 4e4cbee93d56 ("block: switch bios to blk_status_t")
> Fixes: 5416da01ff6e ("PM: hibernate: Remove blk_status_to_errno in hib_wait_io")
> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
> ---
>  kernel/power/swap.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/power/swap.c b/kernel/power/swap.c
> index 9ec418955556..47107f9cd14c 100644
> --- a/kernel/power/swap.c
> +++ b/kernel/power/swap.c
> @@ -299,14 +299,14 @@ static int hib_submit_io(int op, int op_flags, pgoff_t page_off, void *addr,
>         return error;
>  }
>
> -static blk_status_t hib_wait_io(struct hib_bio_batch *hb)
> +static int hib_wait_io(struct hib_bio_batch *hb)
>  {
>         /*
>          * We are relying on the behavior of blk_plug that a thread with
>          * a plug will flush the plug list before sleeping.
>          */
>         wait_event(hb->wait, atomic_read(&hb->count) == 0);
> -       return hb->error;
> +       return blk_status_to_errno(hb->error);
>  }
>
>  /*
> --

Applied as 5.16 material, thanks!

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-10-21 10:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-07 19:13 [PATCH] kernel: power: swap: fix sparse warnings Anders Roxell
2021-10-21 10:49 ` Rafael J. Wysocki

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.