public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] irqchip fixes for 5.15, take #1
@ 2021-09-24  9:09 Marc Zyngier
  2021-09-24 12:18 ` [tip: irq/urgent] Merge tag 'irqchip-fixes-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent tip-bot2 for Thomas Gleixner
  0 siblings, 1 reply; 2+ messages in thread
From: Marc Zyngier @ 2021-09-24  9:09 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Aditya Srivastava, Aleksandar Markovic, Bartosz Golaszewski,
	Bixuan Cui, Geert Uytterhoeven, Geert Uytterhoeven, Goran Ferenc,
	Kaige Fu, kernel test robot, Miodrag Dinic, Randy Dunlap,
	Steffen Trumtrar, Stephen Rothwell, Ulrich Hecht,
	Valentin Schneider, Yun Wu, linux-kernel, kernel-team

Hi Thomas,

Here's a handful of irqchip/irqdomain fixes for 5.15. The biggest
items here are a fix for a regression on the Armada 370-XP platform,
as well as a workaround for an odd Renesas platform.

The rest of the usual set of cleanups and documentation update.

Please pull,

	M.

The following changes since commit 6e3b473ee06445d4eae2f8b1e143db70ed66f519:

  Merge branch irq/qcom-pdc-nowake-cleanup into irq/irqchip-next (2021-08-23 09:50:46 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git tags/irqchip-fixes-5.15-1

for you to fetch changes up to b78f26926b17cc289e4f16b63363abe0aa2e8efc:

  irqchip/gic: Work around broken Renesas integration (2021-09-22 14:44:25 +0100)

----------------------------------------------------------------
irqchip fixes for 5.15, take #1

- Work around a bad GIC integration on a Renesas platform, where the
  interconnect cannot deal with byte-sized MMIO accesses

- Cleanup another Renesas driver abusing the comma operator

- Fix a potential GICv4 memory leak on an error path

- Make the type of 'size' consistent with the rest of the code in
  __irq_domain_add()

- Fix a regression in the Armada 370-XP IPI path

- Fix the build for the obviously unloved goldfish-pic

- Some documentation fixes

----------------------------------------------------------------
Bixuan Cui (1):
      irqdomain: Change the type of 'size' in __irq_domain_add() to be consistent

Geert Uytterhoeven (1):
      irqchip/renesas-rza1: Use semicolons instead of commas

Kaige Fu (1):
      irqchip/gic-v3-its: Fix potential VPE leak on error

Marc Zyngier (3):
      Documentation: Fix irq-domain.rst build warning
      irqchip/armada-370-xp: Fix ack/eoi breakage
      irqchip/gic: Work around broken Renesas integration

Randy Dunlap (2):
      irqchip/mbigen: Repair non-kernel-doc notation
      irqchip/goldfish-pic: Select GENERIC_IRQ_CHIP to fix build

 Documentation/core-api/irq/irq-domain.rst |  5 +--
 drivers/irqchip/Kconfig                   |  1 +
 drivers/irqchip/irq-armada-370-xp.c       |  4 +--
 drivers/irqchip/irq-gic-v3-its.c          |  2 +-
 drivers/irqchip/irq-gic.c                 | 52 ++++++++++++++++++++++++++++++-
 drivers/irqchip/irq-mbigen.c              |  6 ++--
 drivers/irqchip/irq-renesas-rza1.c        | 12 +++----
 include/linux/irqdomain.h                 |  2 +-
 kernel/irq/irqdomain.c                    |  2 +-
 9 files changed, 69 insertions(+), 17 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [tip: irq/urgent] Merge tag 'irqchip-fixes-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
  2021-09-24  9:09 [GIT PULL] irqchip fixes for 5.15, take #1 Marc Zyngier
@ 2021-09-24 12:18 ` tip-bot2 for Thomas Gleixner
  0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Thomas Gleixner @ 2021-09-24 12:18 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: x86, linux-kernel, maz

The following commit has been merged into the irq/urgent branch of tip:

Commit-ID:     f9bfed3ad5b1662426479be2c7b26a608560b7d4
Gitweb:        https://git.kernel.org/tip/f9bfed3ad5b1662426479be2c7b26a608560b7d4
Author:        Thomas Gleixner <tglx@linutronix.de>
AuthorDate:    Fri, 24 Sep 2021 14:11:04 +02:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Fri, 24 Sep 2021 14:11:04 +02:00

Merge tag 'irqchip-fixes-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent

Pull irqchip fixes from Marc Zyngier:

 - Work around a bad GIC integration on a Renesas platform, where the
   interconnect cannot deal with byte-sized MMIO accesses

 - Cleanup another Renesas driver abusing the comma operator

 - Fix a potential GICv4 memory leak on an error path

 - Make the type of 'size' consistent with the rest of the code in
   __irq_domain_add()

 - Fix a regression in the Armada 370-XP IPI path

 - Fix the build for the obviously unloved goldfish-pic

 - Some documentation fixes

Link: https://lore.kernel.org/r/20210924090933.2766857-1-maz@kernel.org
---

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-24 12:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-24  9:09 [GIT PULL] irqchip fixes for 5.15, take #1 Marc Zyngier
2021-09-24 12:18 ` [tip: irq/urgent] Merge tag 'irqchip-fixes-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent tip-bot2 for Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox