projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3366281
)
x86/vector: Fix the args of vector_alloc tracepoint
author
Dou Liyang
<douly.fnst@cn.fujitsu.com>
Fri, 1 Jun 2018 06:50:31 +0000
(14:50 +0800)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 6 Jun 2018 11:38:02 +0000
(13:38 +0200)
The vector_alloc tracepont reversed the reserved and ret aggs, that made
the trace print wrong. Exchange them.
Fixes:
8d1e3dca7de6
("x86/vector: Add tracepoints for vector management")
Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: hpa@zytor.com
Cc: stable@vger.kernel.org
Link:
https://lkml.kernel.org/r/20180601065031.21872-1-douly.fnst@cn.fujitsu.com
arch/x86/include/asm/trace/irq_vectors.h
patch
|
blob
|
history
diff --git
a/arch/x86/include/asm/trace/irq_vectors.h
b/arch/x86/include/asm/trace/irq_vectors.h
index
22647a6
..
0af81b5
100644
(file)
--- a/
arch/x86/include/asm/trace/irq_vectors.h
+++ b/
arch/x86/include/asm/trace/irq_vectors.h
@@
-236,7
+236,7
@@
TRACE_EVENT(vector_alloc,
TP_PROTO(unsigned int irq, unsigned int vector, bool reserved,
int ret),
- TP_ARGS(irq, vector, re
t, reserved
),
+ TP_ARGS(irq, vector, re
served, ret
),
TP_STRUCT__entry(
__field( unsigned int, irq )