There is no difference between IPI_STOP and IPI_STOP_HARD on ARM, so

map them both to the same interrupt number like other arches do.
This commit is contained in:
Ian Lepore 2014-04-27 20:01:59 +00:00
parent edecf7f6c1
commit 824e4131a0
2 changed files with 1 additions and 2 deletions

View File

@ -278,7 +278,6 @@ ipi_handler(void *arg)
break; break;
case IPI_STOP: case IPI_STOP:
case IPI_STOP_HARD:
/* /*
* IPI_STOP_HARD is mapped to IPI_STOP so it is not * IPI_STOP_HARD is mapped to IPI_STOP so it is not
* necessary to add it in the switch. * necessary to add it in the switch.

View File

@ -10,7 +10,7 @@
#define IPI_PREEMPT 2 #define IPI_PREEMPT 2
#define IPI_RENDEZVOUS 3 #define IPI_RENDEZVOUS 3
#define IPI_STOP 4 #define IPI_STOP 4
#define IPI_STOP_HARD 5 #define IPI_STOP_HARD 4
#define IPI_HARDCLOCK 6 #define IPI_HARDCLOCK 6
#define IPI_TLB 7 #define IPI_TLB 7