Skip to content

Commit

Permalink
x86: Fix duplicated UV BAU interrupt vector
Browse files Browse the repository at this point in the history
Interrupt vector 0xec has been doubly defined in irq_vectors.h

It seems arbitrary whether LOCAL_PENDING_VECTOR or
UV_BAU_MESSAGE is the higher number.  As long as they are
unique. If they are not unique we'll hit a BUG in
alloc_system_vector().

Signed-off-by: Cliff Wickman <cpw@sgi.com>
Cc: <stable@kernel.org>
LKML-Reference: <E1NJ9Pe-0004P7-0Q@eag09.americas.sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Cliff Wickman authored and Ingo Molnar committed Dec 13, 2009
1 parent a01c780 commit 1d865fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/include/asm/irq_vectors.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
*/
#define LOCAL_PENDING_VECTOR 0xec

#define UV_BAU_MESSAGE 0xec
#define UV_BAU_MESSAGE 0xea

/*
* Self IPI vector for machine checks
Expand Down

0 comments on commit 1d865fb

Please sign in to comment.