aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDou Liyang <[email protected]>2018-06-01 14:50:31 +0800
committerThomas Gleixner <[email protected]>2018-06-06 13:38:02 +0200
commit838d76d63ec4eaeaa12bedfa50f261480f615200 (patch)
treedb180c65a7eb0cde82f3814401622b64ba2d548f
parent336628128826a9acb045571a960e32e4414ccb61 (diff)
x86/vector: Fix the args of vector_alloc tracepoint
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 <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Cc: [email protected] Cc: [email protected] Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r--arch/x86/include/asm/trace/irq_vectors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/trace/irq_vectors.h b/arch/x86/include/asm/trace/irq_vectors.h
index 22647a642e98..0af81b590a0c 100644
--- 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, ret, reserved),
+ TP_ARGS(irq, vector, reserved, ret),
TP_STRUCT__entry(
__field( unsigned int, irq )