Você está correto: eles estão relacionados ao sistema IO-APIC. ERR
está documentado na documentação do kernel em Documentation/filesystems/proc
(linhas 677 -680):
ERR
is incremented in the case of errors in the IO-APIC bus (the bus that connects the CPUs in a SMP system. This means that an error has been detected, the IO-APIC automatically retry the transmission, so it should not be a big problem, but you should read the SMP-FAQ.
AFAICT você não deve ver isso a menos que haja um problema de hardware. Como a documentação indica, é algo que você mostra nota e investiga se isso acontece com frequência.
MIS
não aparece na documentação, mas esta mensagem no fórum do Gentoo de 2005 fala sobre isso. O atual arch/x86/apic/io_apic.c
(linhas 1797-1806) tem o seguinte comentário:
It appears there is an erratum which affects at least version 0x11 of I/O APIC (that's the 82093AA and cores integrated into various chipsets). Under certain conditions a level-triggered interrupt is erroneously delivered as edge-triggered one but the respective IRR bit gets set nevertheless. As a result the I/O unit expects an EOI message but it will never arrive and further interrupts are blocked from the source. The exact reason is so far unknown, but the phenomenon was observed when two consecutive interrupt requests from a given source get delivered to the same CPU and the source is temporarily disabled in between.
Como este comentário (e código) não mudou significativamente em mais de 10 anos (além da reestruturação do kernel), não tenho certeza de quão relevante ele é hoje, mas é muito pequeno e protege contra um estranho problema de hardware.
Os arquivos que eu olhei eram da versão 4.15.10 do kernel. Suas fontes podem variar.