From: Florian Forster Date: Fri, 15 Dec 2023 19:02:24 +0000 (+0100) Subject: irq plugin: Remove special case for the "FIQ" interrupt. X-Git-Tag: 6.0.0-rc0~36^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4192%2Fhead;p=thirdparty%2Fcollectd.git irq plugin: Remove special case for the "FIQ" interrupt. --- diff --git a/src/irq.c b/src/irq.c index d7bfbc3ce..2e716b533 100644 --- a/src/irq.c +++ b/src/irq.c @@ -150,10 +150,6 @@ static int irq_read_data(metric_family_t *fam) { irq_name[irq_name_len - 1] = 0; irq_name_len--; - /* Is it the the ARM fast interrupt (FIQ)? */ - if (strcmp(irq_name, "FIQ") == 0) - continue; - if (ignorelist_match(ignorelist, irq_name) != 0) continue;