mirror of
https://github.com/opnsense/src.git
synced 2026-03-19 17:29:02 -04:00
has proven to have a good effect when entering KDB by using a NMI, but it completely violates all the good rules about interrupts disabled while holding a spinlock in other occasions. This can be the cause of deadlocks on events where a normal IPI_STOP is expected. * Adds an new IPI called IPI_STOP_HARD on all the supported architectures. This IPI is responsible for sending a stop message among CPUs using a privileged channel when disponible. In other cases it just does match a normal IPI_STOP. Right now the IPI_STOP_HARD functionality uses a NMI on ia32 and amd64 architectures, while on the other has a normal IPI_STOP effect. It is responsibility of maintainers to eventually implement an hard stop when necessary and possible. * Use the new IPI facility in order to implement a new userend SMP kernel function called stop_cpus_hard(). That is specular to stop_cpu() but it does use the privileged channel for the stopping facility. * Let KDB use the newly introduced function stop_cpus_hard() and leave stop_cpus() for all the other cases * Disable interrupts on CPU0 when starting the process of APs suspension. * Style cleanup and comments adding This patch should fix the reboot/shutdown deadlocks many users are constantly reporting on mailing lists. Please don't forget to update your config file with the STOP_NMI option removal Reviewed by: jhb Tested by: pho, bz, rink Approved by: re (kib) |
||
|---|---|---|
| .. | ||
| _bus.h | ||
| _bus_octeon.h | ||
| _inttypes.h | ||
| _limits.h | ||
| _stdint.h | ||
| _types.h | ||
| archtype.h | ||
| asm.h | ||
| asmacros.h | ||
| atomic.h | ||
| bootinfo.h | ||
| bswap.h | ||
| bus.h | ||
| bus_dma.h | ||
| bus_octeon.h | ||
| cache.h | ||
| cache_mipsNN.h | ||
| cache_r4k.h | ||
| clock.h | ||
| clockvar.h | ||
| cpu.h | ||
| cpufunc.h | ||
| cpuinfo.h | ||
| cpuregs.h | ||
| cputypes.h | ||
| db_machdep.h | ||
| defs.h | ||
| elf.h | ||
| endian.h | ||
| exec.h | ||
| float.h | ||
| floatingpoint.h | ||
| fpu.h | ||
| frame.h | ||
| gdb_machdep.h | ||
| hwfunc.h | ||
| ieee.h | ||
| ieeefp.h | ||
| in_cksum.h | ||
| intr.h | ||
| intr_machdep.h | ||
| iodev.h | ||
| kdb.h | ||
| limits.h | ||
| locore.h | ||
| md_var.h | ||
| memdev.h | ||
| metadata.h | ||
| minidump.h | ||
| mips_opcode.h | ||
| mp_watchdog.h | ||
| mutex.h | ||
| param.h | ||
| pcb.h | ||
| pci_cfgreg.h | ||
| pcpu.h | ||
| pltfm.h | ||
| pmap.h | ||
| pmc_mdep.h | ||
| ppireg.h | ||
| proc.h | ||
| profile.h | ||
| psl.h | ||
| pte.h | ||
| ptrace.h | ||
| queue.h | ||
| reg.h | ||
| regdef.h | ||
| regnum.h | ||
| reloc.h | ||
| resource.h | ||
| rm7000.h | ||
| runq.h | ||
| segments.h | ||
| setjmp.h | ||
| sf_buf.h | ||
| sigframe.h | ||
| signal.h | ||
| smp.h | ||
| stdarg.h | ||
| sysarch.h | ||
| timerreg.h | ||
| trap.h | ||
| ucontext.h | ||
| varargs.h | ||
| vm.h | ||
| vmparam.h | ||