[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20211117192605.GA774211@makvihas>
Date: Thu, 18 Nov 2021 00:56:05 +0530
From: Vihas Mak <makvihas@...il.com>
To: tglx@...utronix.de, mingo@...hat.com, bp@...en8.de, x86@...nel.org
Cc: hpa@...or.com, linux-kernel@...r.kernel.org, makvihas@...il.com
Subject: [PATCH] arch: x86: use swap()
Cocci gives following warning:
arch/x86/kernel/unwind_orc.c:212:19-20: WARNING opportunity for swap()
Fix this by using swap() macro.
Signed-off-by: Vihas Mak <makvihas@...il.com>
Cc: "H. Peter Anvin" <hpa@...or.com>
---
arch/x86/kernel/unwind_orc.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/arch/x86/kernel/unwind_orc.c b/arch/x86/kernel/unwind_orc.c
index a1202536f..a7aaf6bcf 100644
--- a/arch/x86/kernel/unwind_orc.c
+++ b/arch/x86/kernel/unwind_orc.c
@@ -196,7 +196,6 @@ static struct orc_entry *cur_orc_table = __start_orc_unwind;
static void orc_sort_swap(void *_a, void *_b, int size)
{
struct orc_entry *orc_a, *orc_b;
- struct orc_entry orc_tmp;
int *a = _a, *b = _b, tmp;
int delta = _b - _a;
@@ -208,9 +207,7 @@ static void orc_sort_swap(void *_a, void *_b, int size)
/* Swap the corresponding .orc_unwind entries: */
orc_a = cur_orc_table + (a - cur_orc_ip_table);
orc_b = cur_orc_table + (b - cur_orc_ip_table);
- orc_tmp = *orc_a;
- *orc_a = *orc_b;
- *orc_b = orc_tmp;
+ swap(*orc_a, *orc_b);
}
static int orc_sort_cmp(const void *_a, const void *_b)
--
2.25.1
Powered by blists - more mailing lists