From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A6C694F5EF; Thu, 11 Jan 2024 14:53:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ii9rTNIH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E1354C433F1; Thu, 11 Jan 2024 14:53:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1704984820; bh=+BqtsdmJgllie0f+TedmDOkSJxfwyuvJ7XtBHEWUI+w=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=ii9rTNIHuhCcC5SFO36i+uwShspbZKQIChMO1ToULIRBnM8aehcOxo7Fpwa8NjUph uLv6MGpH5QGiY9wytE3zVj+6SrNeL9P35PUpSgJqAgKY9Q/kmtV9cOzARg7s7LjCQz VmXu4CklM0NEtcGAtnYPq+MDPhqOuy6Tg4ascn0bkMa8VyAoAyk3ScssPWxPN00BjC Ed13owoFf0UZS3HP/dk+UG0HPgar2uFmL8BrDn+D5IkJpj5Og6wFLBJMnU87TysnG0 Mj2shKLMrrPdjSUbF8fffW7hYKhTtMs22pDLQGJtqSBmcXdvGG/s4zeML3RPE7wY9L dZq3QqKloPQsQ== Date: Thu, 11 Jan 2024 08:53:38 -0600 From: Bjorn Helgaas To: Philipp Stanner Cc: Bjorn Helgaas , Arnd Bergmann , Johannes Berg , Randy Dunlap , NeilBrown , John Sanpe , Kent Overstreet , Niklas Schnelle , Dave Jiang , Uladzislau Koshchanka , "Masami Hiramatsu (Google)" , David Gow , Kees Cook , Rae Moar , Geert Uytterhoeven , "wuqiang.matt" , Yury Norov , Jason Baron , Thomas Gleixner , Marco Elver , Andrew Morton , Ben Dooks , dakr@redhat.com, linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-arch@vger.kernel.org, stable@vger.kernel.org Subject: Re: [PATCH v5 RESEND 0/5] Regather scattered PCI-Code Message-ID: <20240111145338.GA2173492@bhelgaas> Precedence: bulk X-Mailing-List: linux-arch@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240111085540.7740-1-pstanner@redhat.com> 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%)