2023-10-27 02:13:26

by Li kunyu

[permalink] [raw]
Subject: [PATCH] power: swap: Remove unnecessary ‘0’ values from ret

'ret 'is first assigned a value and then used, it does not need to be
assigned at definition time.

Signed-off-by: Li kunyu <[email protected]>
---
kernel/power/swap.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/power/swap.c b/kernel/power/swap.c
index 90bb583c57bf7..32e8cb6ceaea4 100644
--- a/kernel/power/swap.c
+++ b/kernel/power/swap.c
@@ -679,7 +679,7 @@ static int save_image_lzo(struct swap_map_handle *handle,
unsigned int nr_to_write)
{
unsigned int m;
- int ret = 0;
+ int ret;
int nr_pages;
int err2;
struct hib_bio_batch hb;
@@ -1060,7 +1060,7 @@ static int load_image(struct swap_map_handle *handle,
unsigned int nr_to_read)
{
unsigned int m;
- int ret = 0;
+ int ret;
ktime_t start;
ktime_t stop;
struct hib_bio_batch hb;
@@ -1166,7 +1166,7 @@ static int load_image_lzo(struct swap_map_handle *handle,
unsigned int nr_to_read)
{
unsigned int m;
- int ret = 0;
+ int ret;
int eof = 0;
struct hib_bio_batch hb;
ktime_t start;
--
2.18.2


2023-12-11 21:15:37

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH] power: swap: Remove unnecessary ‘0’ values from ret

On Fri, Oct 27, 2023 at 4:13 AM Li kunyu <[email protected]> wrote:
>
> 'ret 'is first assigned a value and then used, it does not need to be
> assigned at definition time.

But the compiler may be confused, at least in the first case.

> Signed-off-by: Li kunyu <[email protected]>
> ---
> kernel/power/swap.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/power/swap.c b/kernel/power/swap.c
> index 90bb583c57bf7..32e8cb6ceaea4 100644
> --- a/kernel/power/swap.c
> +++ b/kernel/power/swap.c
> @@ -679,7 +679,7 @@ static int save_image_lzo(struct swap_map_handle *handle,
> unsigned int nr_to_write)
> {
> unsigned int m;
> - int ret = 0;
> + int ret;

It is better to leave the code as is here as the compiler may still
complain about the initialization of ret.

> int nr_pages;
> int err2;
> struct hib_bio_batch hb;
> @@ -1060,7 +1060,7 @@ static int load_image(struct swap_map_handle *handle,
> unsigned int nr_to_read)
> {
> unsigned int m;
> - int ret = 0;
> + int ret;
> ktime_t start;
> ktime_t stop;
> struct hib_bio_batch hb;
> @@ -1166,7 +1166,7 @@ static int load_image_lzo(struct swap_map_handle *handle,
> unsigned int nr_to_read)
> {
> unsigned int m;
> - int ret = 0;
> + int ret;
> int eof = 0;
> struct hib_bio_batch hb;
> ktime_t start;
> --
> 2.18.2
>