Searched refs:ipinr (Results 1 – 4 of 4) sorted by relevance
/arch/arm/include/asm/ |
D | smp.h | 33 asmlinkage void do_IPI(int ipinr, struct pt_regs *regs); 38 void handle_IPI(int ipinr, struct pt_regs *regs);
|
/arch/arm64/kernel/ |
D | smp.c | 523 void handle_IPI(int ipinr, struct pt_regs *regs) in handle_IPI() argument 528 if (ipinr >= IPI_RESCHEDULE && ipinr < IPI_RESCHEDULE + NR_IPI) in handle_IPI() 529 __inc_irq_stat(cpu, ipi_irqs[ipinr - IPI_RESCHEDULE]); in handle_IPI() 531 switch (ipinr) { in handle_IPI() 563 pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr); in handle_IPI()
|
/arch/arm/kernel/ |
D | smp.c | 648 asmlinkage void __exception_irq_entry do_IPI(int ipinr, struct pt_regs *regs) in do_IPI() argument 650 handle_IPI(ipinr, regs); in do_IPI() 653 void handle_IPI(int ipinr, struct pt_regs *regs) in handle_IPI() argument 658 if (ipinr < NR_IPI) in handle_IPI() 659 __inc_irq_stat(cpu, ipi_irqs[ipinr]); in handle_IPI() 661 switch (ipinr) { in handle_IPI() 701 cpu, ipinr); in handle_IPI()
|
/arch/arm64/include/asm/ |
D | smp.h | 39 extern void handle_IPI(int ipinr, struct pt_regs *regs);
|