2021-11-01 02:14:48

by Yihao Han

[permalink] [raw]
Subject: [PATCH] parisc: using swap() instead of tmp

swap() was used instead of the tmp variable to swap values

Signed-off-by: Yihao Han <[email protected]>
---
arch/parisc/mm/init.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/parisc/mm/init.c b/arch/parisc/mm/init.c
index 65f50f072a87..b705a423be85 100644
--- a/arch/parisc/mm/init.c
+++ b/arch/parisc/mm/init.c
@@ -127,16 +127,13 @@ static void __init setup_bootmem(void)
int j;

for (j = i; j > 0; j--) {
- physmem_range_t tmp;

if (pmem_ranges[j-1].start_pfn <
pmem_ranges[j].start_pfn) {

break;
}
- tmp = pmem_ranges[j-1];
- pmem_ranges[j-1] = pmem_ranges[j];
- pmem_ranges[j] = tmp;
+ swap(pmem_ranges[j-1], pmem_ranges[j]);
}
}

--
2.17.1


2021-11-01 02:26:14

by Matthew Wilcox

[permalink] [raw]
Subject: Re: [PATCH] parisc: using swap() instead of tmp

On Sun, Oct 31, 2021 at 07:10:45PM -0700, Yihao Han wrote:
> @@ -127,16 +127,13 @@ static void __init setup_bootmem(void)
> int j;
>
> for (j = i; j > 0; j--) {
> - physmem_range_t tmp;
>

If you're going to delete that line, you should also delete the
blank line after it.

> if (pmem_ranges[j-1].start_pfn <
> pmem_ranges[j].start_pfn) {
>
> break;
> }
> - tmp = pmem_ranges[j-1];
> - pmem_ranges[j-1] = pmem_ranges[j];
> - pmem_ranges[j] = tmp;
> + swap(pmem_ranges[j-1], pmem_ranges[j]);
> }
> }
>
> --
> 2.17.1
>