Re: [PATCH net] i40e: fix IRQ freeing in i40e_vsi_request_irq_msix error path
From: Michal Schmidt
Date: Tue Aug 19 2025 - 02:32:55 EST
On Tue, Aug 19, 2025 at 8:05 AM Subbaraya Sundeep <sbhatta@xxxxxxxxxxx> wrote:
> Hi Michal,
> On 2025-08-18 at 15:39:03, Michal Schmidt (mschmidt@xxxxxxxxxx) wrote:
> > Use the same dev_id for free_irq() as for request_irq().
> >
> > I tested this with inserting code to fail intentionally.
> >
> Nice. Looks like changing this in i40e_vsi_request_irq_msix was missed
> during 493fb30011b3. Just a question isn't this not throwing any
> compilation warning all these days?
No warnings, because the type of the dev_id parameter is a void pointer.
Michal