From: kernel test robot <lkp@intel.com>
To: Ciju Rajan K <crajank@nvidia.com>,
hdegoede@redhat.com, ilpo.jarvinen@linux.intel.com,
tglx@linutronix.de
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
christophe.jaillet@wanadoo.fr, andriy.shevchenko@linux.intel.com,
vadimp@nvidia.com, platform-driver-x86@vger.kernel.org,
linux-kernel@vger.kernel.org, Ciju Rajan K <crajank@nvidia.com>
Subject: Re: [PATCH platform-next v4 1/2] kernel/irq: Add generic interrupt storm detection mechanism
Date: Thu, 15 Jan 2026 22:11:30 +0800 [thread overview]
Message-ID: <202601152104.pBPeNPHR-lkp@intel.com> (raw)
In-Reply-To: <20260115074909.245852-2-crajank@nvidia.com>
Hi Ciju,
kernel test robot noticed the following build warnings:
[auto build test WARNING on linus/master]
[also build test WARNING on v6.19-rc5]
[cannot apply to tip/irq/core next-20260115]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Ciju-Rajan-K/kernel-irq-Add-generic-interrupt-storm-detection-mechanism/20260115-155438
base: linus/master
patch link: https://lore.kernel.org/r/20260115074909.245852-2-crajank%40nvidia.com
patch subject: [PATCH platform-next v4 1/2] kernel/irq: Add generic interrupt storm detection mechanism
config: arm-allnoconfig (https://download.01.org/0day-ci/archive/20260115/202601152104.pBPeNPHR-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 9b8addffa70cee5b2acc5454712d9cf78ce45710)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260115/202601152104.pBPeNPHR-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202601152104.pBPeNPHR-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> kernel/irq/spurious.c:41:6: warning: no previous prototype for function 'irq_register_storm_detection' [-Wmissing-prototypes]
41 | bool irq_register_storm_detection(unsigned int irq, unsigned int max_freq,
| ^
kernel/irq/spurious.c:41:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
41 | bool irq_register_storm_detection(unsigned int irq, unsigned int max_freq,
| ^
| static
>> kernel/irq/spurious.c:79:6: warning: no previous prototype for function 'irq_unregister_storm_detection' [-Wmissing-prototypes]
79 | void irq_unregister_storm_detection(unsigned int irq)
| ^
kernel/irq/spurious.c:79:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
79 | void irq_unregister_storm_detection(unsigned int irq)
| ^
| static
2 warnings generated.
vim +/irq_register_storm_detection +41 kernel/irq/spurious.c
30
31
32 /**
33 * irq_register_storm_detection - register interrupt storm detection for an IRQ
34 * @irq: interrupt number
35 * @max_freq: maximum allowed frequency (interrupts per second)
36 * @cb: callback function to invoke when storm is detected
37 * @dev_id: device identifier passed to callback
38 *
39 * Returns: true on success, false on failure
40 */
> 41 bool irq_register_storm_detection(unsigned int irq, unsigned int max_freq,
42 irq_storm_cb_t cb, void *dev_id)
43 {
44 struct irq_storm *storm;
45 bool ret = false;
46
47 if (max_freq < IRQ_STORM_MIN_FREQ_HZ || !cb)
48 return false;
49
50 storm = kzalloc(sizeof(*storm), GFP_KERNEL);
51 if (!storm)
52 return false;
53
54 /* Adjust to count per 10ms */
55 storm->max_cnt = max_freq / (IRQ_STORM_MAX_FREQ_SCALE);
56 storm->cb = cb;
57 storm->dev_id = dev_id;
58
59 scoped_irqdesc_get_and_buslock(irq, IRQ_GET_DESC_CHECK_GLOBAL) {
60 if (scoped_irqdesc->action && !scoped_irqdesc->irq_storm) {
61 storm->last_cnt = scoped_irqdesc->tot_count;
62 storm->next_period = jiffies + msecs_to_jiffies(IRQ_STORM_PERIOD_WINDOW_MS);
63 scoped_irqdesc->irq_storm = storm;
64 ret = true;
65 }
66 }
67
68 if (!ret)
69 kfree(storm);
70
71 return ret;
72 }
73 EXPORT_SYMBOL_GPL(irq_register_storm_detection);
74
75 /**
76 * irq_unregister_storm_detection - unregister interrupt storm detection
77 * @irq: interrupt number
78 */
> 79 void irq_unregister_storm_detection(unsigned int irq)
80 {
81 scoped_irqdesc_get_and_buslock(irq, IRQ_GET_DESC_CHECK_GLOBAL) {
82 if (scoped_irqdesc->irq_storm) {
83 kfree(scoped_irqdesc->irq_storm);
84 scoped_irqdesc->irq_storm = NULL;
85 }
86 }
87 }
88 EXPORT_SYMBOL_GPL(irq_unregister_storm_detection);
89
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-15 14:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-15 7:49 [PATCH platform-next v4 0/2] Interrupt storm detection Ciju Rajan K
2026-01-15 7:49 ` [PATCH platform-next v4 1/2] kernel/irq: Add generic interrupt storm detection mechanism Ciju Rajan K
2026-01-15 8:29 ` Andy Shevchenko
2026-01-15 14:00 ` kernel test robot
2026-01-15 14:11 ` kernel test robot [this message]
2026-01-15 7:49 ` [PATCH platform-next v4 2/2] platform/mellanox: mlxreg-hotplug: Enabling interrupt storm detection Ciju Rajan K
2026-01-15 8:34 ` Andy Shevchenko
2026-01-15 14:43 ` kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202601152104.pBPeNPHR-lkp@intel.com \
--to=lkp@intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=crajank@nvidia.com \
--cc=hdegoede@redhat.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=platform-driver-x86@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=vadimp@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.