2021-10-28 08:50:27

by CGEL

[permalink] [raw]
Subject: [PATCH v2] raid5-ppl: use swap() to make code cleaner

From: Yang Guang <[email protected]>

Use the macro `swap()` defined in `include/linux/minmax.h` to avoid
opencoding it.

Reported-by: Zeal Robot <[email protected]>
Signed-off-by: Yang Guang <[email protected]>
---
drivers/md/raid5-ppl.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/md/raid5-ppl.c b/drivers/md/raid5-ppl.c
index 3ddc2aa0b530..4ab417915d7f 100644
--- a/drivers/md/raid5-ppl.c
+++ b/drivers/md/raid5-ppl.c
@@ -1081,7 +1081,7 @@ static int ppl_load_distributed(struct ppl_log *log)
struct ppl_conf *ppl_conf = log->ppl_conf;
struct md_rdev *rdev = log->rdev;
struct mddev *mddev = rdev->mddev;
- struct page *page, *page2, *tmp;
+ struct page *page, *page2;
struct ppl_header *pplhdr = NULL, *prev_pplhdr = NULL;
u32 crc, crc_stored;
u32 signature;
@@ -1156,9 +1156,7 @@ static int ppl_load_distributed(struct ppl_log *log)
prev_pplhdr_offset = pplhdr_offset;
prev_pplhdr = pplhdr;

- tmp = page;
- page = page2;
- page2 = tmp;
+ swap(page, page2);

/* calculate next potential ppl offset */
for (i = 0; i < le32_to_cpu(pplhdr->entries_count); i++)
--
2.30.2


2021-11-02 18:30:39

by Song Liu

[permalink] [raw]
Subject: Re: [PATCH v2] raid5-ppl: use swap() to make code cleaner

On Thu, Oct 28, 2021 at 1:48 AM <[email protected]> wrote:
>
> From: Yang Guang <[email protected]>
>
> Use the macro `swap()` defined in `include/linux/minmax.h` to avoid
> opencoding it.
>
> Reported-by: Zeal Robot <[email protected]>
> Signed-off-by: Yang Guang <[email protected]>

Applied to md-next. Thanks!

2021-11-03 06:13:13

by Song Liu

[permalink] [raw]
Subject: Re: [PATCH v2] raid5-ppl: use swap() to make code cleaner

On Thu, Oct 28, 2021 at 1:48 AM <[email protected]> wrote:

By the way, who is the owner of [email protected]? I see the same
account sending patches for different authors. If it is one person sending
patches for another person, we need "Signed-off-by" from both of them.

Thanks,
Song

2021-11-03 06:48:55

by CGEL

[permalink] [raw]
Subject: Re: [PATCH v2] raid5-ppl: use swap() to make code cleaner

Hi Song,

Because we don't have right to send out email by @zte.com.cn.
So we all use [email protected] to send out email and sign by echo one own @zte.com.cn email.
My email is [email protected].
Signed-off-by: Yang Guang <[email protected]>
Thank you!

On Tue, Nov 02, 2021 at 11:09:07PM -0700, Song Liu wrote:
> On Thu, Oct 28, 2021 at 1:48 AM <[email protected]> wrote:
>
> By the way, who is the owner of [email protected]? I see the same
> account sending patches for different authors. If it is one person sending
> patches for another person, we need "Signed-off-by" from both of them.
>
> Thanks,
> Song