Skip to content

Commit 606c620

Browse files
Automatic merge of 'next' into merge (2025-09-24 11:47)
2 parents 1c2a28e + ef10405 commit 606c620

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

arch/powerpc/include/uapi/asm/papr-hvpipe.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* closed or the buffer has the payload.
1414
*/
1515
struct papr_hvpipe_hdr {
16-
u8 version;
17-
u8 reserved[3];
18-
u32 flags;
19-
u8 reserved2[40];
16+
__u8 version;
17+
__u8 reserved[3];
18+
__u32 flags;
19+
__u8 reserved2[40];
2020
};
2121

2222
/*

include/linux/msi.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,6 @@ struct msi_domain_info;
431431
* function.
432432
* @domain_free_irqs: Optional function to override the default free
433433
* function.
434-
* @msi_post_free: Optional function which is invoked after freeing
435-
* all interrupts.
436434
* @msi_translate: Optional translate callback to support the odd wire to
437435
* MSI bridges, e.g. MBIGEN
438436
*
@@ -473,8 +471,6 @@ struct msi_domain_ops {
473471
struct device *dev, int nvec);
474472
void (*domain_free_irqs)(struct irq_domain *domain,
475473
struct device *dev);
476-
void (*msi_post_free)(struct irq_domain *domain,
477-
struct device *dev);
478474
int (*msi_translate)(struct irq_domain *domain, struct irq_fwspec *fwspec,
479475
irq_hw_number_t *hwirq, unsigned int *type);
480476
};

kernel/irq/msi.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1644,9 +1644,6 @@ static void msi_domain_free_locked(struct device *dev, struct msi_ctrl *ctrl)
16441644
else
16451645
__msi_domain_free_irqs(dev, domain, ctrl);
16461646

1647-
if (ops->msi_post_free)
1648-
ops->msi_post_free(domain, dev);
1649-
16501647
if (info->flags & MSI_FLAG_FREE_MSI_DESCS)
16511648
msi_domain_free_descs(dev, ctrl);
16521649
}

0 commit comments

Comments
 (0)