X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Firq.c;h=6afacf0d0dfbee2ad740a00de6200ff66e289d11;hb=a5218a7626e9d1800f13d6580c708833bc62469f;hp=1168b979e07688a995a1a7e640c5237a28df8641;hpb=3faf514fd9b869cadda0f895e14e5036313c7781;p=collectd.git diff --git a/src/irq.c b/src/irq.c index 1168b979..6afacf0d 100644 --- a/src/irq.c +++ b/src/irq.c @@ -155,6 +155,10 @@ static int irq_read (void) if (irq_name[irq_name_len - 1] != ':') continue; + /* Is it the the ARM fast interrupt (FIQ)? */ + if (irq_name_len == 4 && (strncmp(irq_name, "FIQ:", 4) == 0)) + continue; + irq_name[irq_name_len - 1] = 0; irq_name_len--;