* [GIT PULL] IPMI bug fixes for 6.10
@ 2024-05-13 18:53 Corey Minyard
2024-05-25 14:39 ` Corey Minyard
2024-05-25 21:40 ` pr-tracker-bot
0 siblings, 2 replies; 4+ messages in thread
From: Corey Minyard @ 2024-05-13 18:53 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, openipmi-developer
The following changes since commit 8d025e2092e29bfd13e56c78e22af25fac83c8ec:
Merge tag 'erofs-for-6.9-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs (2024-03-27 20:24:09 -0700)
are available in the Git repository at:
https://github.com/cminyard/linux-ipmi.git tags/for-linus-6.10-1
for you to fetch changes up to 999dff3c13930ad77a7070a5fb4473b1fafdcecc:
ipmi: kcs_bmc_npcm7xx: Convert to platform remove callback returning void (2024-04-17 14:55:04 -0500)
----------------------------------------------------------------
ipmi: Mostly updates for deprecated interfaces
These changes are mostly updates for deprecated interfaces,
platform.remove and converting from a tasklet to a BH workqueue. Also
use HAS_IOPORT for disabling inb()/outb().
-corey
----------------------------------------------------------------
Allen Pais (1):
ipmi: Convert from tasklet to BH workqueue
Niklas Schnelle (1):
char: ipmi: handle HAS_IOPORT dependencies
Uwe Kleine-König (6):
ipmi: bt-bmc: Convert to platform remove callback returning void
ipmi: ipmi_powernv: Convert to platform remove callback returning void
ipmi: ipmi_si_platform: Convert to platform remove callback returning void
ipmi: ipmi_ssif: Convert to platform remove callback returning void
ipmi: kcs_bmc_aspeed: Convert to platform remove callback returning void
ipmi: kcs_bmc_npcm7xx: Convert to platform remove callback returning void
drivers/char/ipmi/Makefile | 11 ++++-------
drivers/char/ipmi/bt-bmc.c | 5 ++---
drivers/char/ipmi/ipmi_msghandler.c | 29 ++++++++++++++---------------
drivers/char/ipmi/ipmi_powernv.c | 6 ++----
drivers/char/ipmi/ipmi_si_intf.c | 3 ++-
drivers/char/ipmi/ipmi_si_pci.c | 3 +++
drivers/char/ipmi/ipmi_si_platform.c | 6 ++----
drivers/char/ipmi/ipmi_ssif.c | 5 ++---
drivers/char/ipmi/kcs_bmc_aspeed.c | 6 ++----
drivers/char/ipmi/kcs_bmc_npcm7xx.c | 6 ++----
10 files changed, 35 insertions(+), 45 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [GIT PULL] IPMI bug fixes for 6.10
2024-05-13 18:53 [GIT PULL] IPMI bug fixes for 6.10 Corey Minyard
@ 2024-05-25 14:39 ` Corey Minyard
2024-05-25 21:30 ` Linus Torvalds
2024-05-25 21:40 ` pr-tracker-bot
1 sibling, 1 reply; 4+ messages in thread
From: Corey Minyard @ 2024-05-25 14:39 UTC (permalink / raw)
To: Linus Torvalds, linux-kernel, openipmi-developer; +Cc: Jani Rantanen
Hi Linus,
These haven't hit the kernel yet, were the missed?
Thank you,
-corey
On Mon, May 13, 2024 at 01:53:15PM -0500, Corey Minyard wrote:
> The following changes since commit 8d025e2092e29bfd13e56c78e22af25fac83c8ec:
>
> Merge tag 'erofs-for-6.9-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs (2024-03-27 20:24:09 -0700)
>
> are available in the Git repository at:
>
> https://github.com/cminyard/linux-ipmi.git tags/for-linus-6.10-1
>
> for you to fetch changes up to 999dff3c13930ad77a7070a5fb4473b1fafdcecc:
>
> ipmi: kcs_bmc_npcm7xx: Convert to platform remove callback returning void (2024-04-17 14:55:04 -0500)
>
> ----------------------------------------------------------------
> ipmi: Mostly updates for deprecated interfaces
>
> These changes are mostly updates for deprecated interfaces,
> platform.remove and converting from a tasklet to a BH workqueue. Also
> use HAS_IOPORT for disabling inb()/outb().
>
> -corey
>
> ----------------------------------------------------------------
> Allen Pais (1):
> ipmi: Convert from tasklet to BH workqueue
>
> Niklas Schnelle (1):
> char: ipmi: handle HAS_IOPORT dependencies
>
> Uwe Kleine-König (6):
> ipmi: bt-bmc: Convert to platform remove callback returning void
> ipmi: ipmi_powernv: Convert to platform remove callback returning void
> ipmi: ipmi_si_platform: Convert to platform remove callback returning void
> ipmi: ipmi_ssif: Convert to platform remove callback returning void
> ipmi: kcs_bmc_aspeed: Convert to platform remove callback returning void
> ipmi: kcs_bmc_npcm7xx: Convert to platform remove callback returning void
>
> drivers/char/ipmi/Makefile | 11 ++++-------
> drivers/char/ipmi/bt-bmc.c | 5 ++---
> drivers/char/ipmi/ipmi_msghandler.c | 29 ++++++++++++++---------------
> drivers/char/ipmi/ipmi_powernv.c | 6 ++----
> drivers/char/ipmi/ipmi_si_intf.c | 3 ++-
> drivers/char/ipmi/ipmi_si_pci.c | 3 +++
> drivers/char/ipmi/ipmi_si_platform.c | 6 ++----
> drivers/char/ipmi/ipmi_ssif.c | 5 ++---
> drivers/char/ipmi/kcs_bmc_aspeed.c | 6 ++----
> drivers/char/ipmi/kcs_bmc_npcm7xx.c | 6 ++----
> 10 files changed, 35 insertions(+), 45 deletions(-)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] IPMI bug fixes for 6.10
2024-05-25 14:39 ` Corey Minyard
@ 2024-05-25 21:30 ` Linus Torvalds
0 siblings, 0 replies; 4+ messages in thread
From: Linus Torvalds @ 2024-05-25 21:30 UTC (permalink / raw)
To: minyard; +Cc: linux-kernel, openipmi-developer, Jani Rantanen
On Sat, 25 May 2024 at 07:39, Corey Minyard <minyard@acm.org> wrote:
>
> These haven't hit the kernel yet, were the missed?
Hmm. That email does not exist in my mailbox at all.
When I search for it on lore, I see it there, so it must have been
marked as spam and I missed it when doing my daily quick scan for it.
Or I fat-fingered things some other way.
Thanks for re-sending, that was definitely the right thing, and it's
next in my pull-queue now.
Linus
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] IPMI bug fixes for 6.10
2024-05-13 18:53 [GIT PULL] IPMI bug fixes for 6.10 Corey Minyard
2024-05-25 14:39 ` Corey Minyard
@ 2024-05-25 21:40 ` pr-tracker-bot
1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2024-05-25 21:40 UTC (permalink / raw)
To: Corey Minyard; +Cc: Linus Torvalds, linux-kernel, openipmi-developer
The pull request you sent on Mon, 13 May 2024 13:53:14 -0500:
> https://github.com/cminyard/linux-ipmi.git tags/for-linus-6.10-1
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/56676c4c06f19215fbf8b8813c73d63c986270f8
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-25 21:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13 18:53 [GIT PULL] IPMI bug fixes for 6.10 Corey Minyard
2024-05-25 14:39 ` Corey Minyard
2024-05-25 21:30 ` Linus Torvalds
2024-05-25 21:40 ` pr-tracker-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox