Message ID | 20240111085540.7740-1-pstanner@redhat.com (mailing list archive) |
---|---|
Headers | show |
Series | Regather scattered PCI-Code | expand |
On Thu, 2024-01-11 at 09:55 +0100, Philipp Stanner wrote: > Second Resend. Would be cool if someone could tell me what I'll have to > do so we can get this merged. I don't even know who'd merge it, but um doesn't seem appropriate... > > @Stable-Kernel: > You receive this patch series because its first patch fixes leaks in > PCI. Too early for that, stable just ignores stuff before it hits mainline. johannes
On Thu, 2024-01-11 at 10:03 +0100, Johannes Berg wrote: > On Thu, 2024-01-11 at 09:55 +0100, Philipp Stanner wrote: > > Second Resend. Would be cool if someone could tell me what I'll > > have to > > do so we can get this merged. > > I don't even know who'd merge it, but um doesn't seem appropriate... UM isn't a recipent, I'd guess it's some mail filter which might make it appear that way :) The lists I sent this to are linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-arch@vger.kernel.org, stable@vger.kernel.org Anyways, PCI is for sure who should merge this, since it's 100% about PCI. > > > > @Stable-Kernel: > > You receive this patch series because its first patch fixes leaks > > in > > PCI. > > Too early for that, stable just ignores stuff before it hits > mainline. I know, they're in CC because of the "Fixes: " P. > > johannes >
On Thu, 2024-01-11 at 10:14 +0100, Philipp Stanner wrote: > On Thu, 2024-01-11 at 10:03 +0100, Johannes Berg wrote: > > On Thu, 2024-01-11 at 09:55 +0100, Philipp Stanner wrote: > > > Second Resend. Would be cool if someone could tell me what I'll > > > have to > > > do so we can get this merged. > > > > I don't even know who'd merge it, but um doesn't seem appropriate... > > UM isn't a recipent, I'd guess it's some mail filter which might make > it appear that way :) Oh. I guess I thought I was CC'ed as UM maintainer :) > The lists I sent this to are > linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, > linux-arch@vger.kernel.org, stable@vger.kernel.org > > Anyways, PCI is for sure who should merge this, since it's 100% about > PCI. Sounds good :) johannes
On Thu, Jan 11, 2024 at 09:55:35AM +0100, Philipp Stanner wrote: > Second Resend. Would be cool if someone could tell me what I'll have to > do so we can get this merged. This is blocking the followup work I've > got in the pipe This seems PCI-focused, and I'll look at merging this after v6.8-rc1 is tagged and the merge window closes (probably Jan 21). Then I'll rebase it to v6.8-rc1, tidy the subject lines to look like the rest of drivers/pci/, etc. > Philipp Stanner (5): > lib/pci_iomap.c: fix cleanup bugs in pci_iounmap() > lib: move pci_iomap.c to drivers/pci/ > lib: move pci-specific devres code to drivers/pci/ > pci: move devres code from pci.c to devres.c > lib, pci: unify generic pci_iounmap() > > MAINTAINERS | 1 - > drivers/pci/Kconfig | 5 + > drivers/pci/Makefile | 3 +- > drivers/pci/devres.c | 450 +++++++++++++++++++++++++ > lib/pci_iomap.c => drivers/pci/iomap.c | 49 +-- > drivers/pci/pci.c | 249 -------------- > drivers/pci/pci.h | 24 ++ > include/asm-generic/io.h | 27 +- > include/asm-generic/iomap.h | 21 ++ > lib/Kconfig | 3 - > lib/Makefile | 1 - > lib/devres.c | 208 +----------- > lib/iomap.c | 28 +- > 13 files changed, 566 insertions(+), 503 deletions(-) > create mode 100644 drivers/pci/devres.c > rename lib/pci_iomap.c => drivers/pci/iomap.c (75%)
On Thu, 2024-01-11 at 08:53 -0600, Bjorn Helgaas wrote: > On Thu, Jan 11, 2024 at 09:55:35AM +0100, Philipp Stanner wrote: > > Second Resend. Would be cool if someone could tell me what I'll > > have to > > do so we can get this merged. This is blocking the followup work > > I've > > got in the pipe > > This seems PCI-focused, and I'll look at merging this after v6.8-rc1 > is tagged and the merge window closes (probably Jan 21). Then I'll > rebase it to v6.8-rc1, tidy the subject lines to look like the rest > of drivers/pci/, etc. Cool! Just ping you if you need me to do something Regards, P. > > > Philipp Stanner (5): > > lib/pci_iomap.c: fix cleanup bugs in pci_iounmap() > > lib: move pci_iomap.c to drivers/pci/ > > lib: move pci-specific devres code to drivers/pci/ > > pci: move devres code from pci.c to devres.c > > lib, pci: unify generic pci_iounmap() > > > > MAINTAINERS | 1 - > > drivers/pci/Kconfig | 5 + > > drivers/pci/Makefile | 3 +- > > drivers/pci/devres.c | 450 > > +++++++++++++++++++++++++ > > lib/pci_iomap.c => drivers/pci/iomap.c | 49 +-- > > drivers/pci/pci.c | 249 -------------- > > drivers/pci/pci.h | 24 ++ > > include/asm-generic/io.h | 27 +- > > include/asm-generic/iomap.h | 21 ++ > > lib/Kconfig | 3 - > > lib/Makefile | 1 - > > lib/devres.c | 208 +----------- > > lib/iomap.c | 28 +- > > 13 files changed, 566 insertions(+), 503 deletions(-) > > create mode 100644 drivers/pci/devres.c > > rename lib/pci_iomap.c => drivers/pci/iomap.c (75%) >