* [GIT PULL] generic early_ioremap support
@ 2014-03-13 2:29 Mark Salter
2014-03-13 2:53 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Mark Salter @ 2014-03-13 2:29 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Hi Andrew,
Could you add this series into the -mm tree for v3.15?
The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)
are available in the git repository at:
git://github.com/mosalter/linux.git tags/for-v3.15
for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:
doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)
----------------------------------------------------------------
generic early_ioremap support
----------------------------------------------------------------
Dave Young (1):
x86/mm: sparse warning fix for early_memremap
Mark Salter (5):
mm: create generic early_ioremap() support
x86: use generic early_ioremap
arm64: initialize pgprot info earlier in boot
arm64: add early_ioremap support
doc/kernel-parameters.txt: add early_ioremap_debug
Documentation/arm64/memory.txt | 4 +-
Documentation/kernel-parameters.txt | 5 +
arch/arm64/Kconfig | 1 +
arch/arm64/include/asm/Kbuild | 1 +
arch/arm64/include/asm/fixmap.h | 67 ++++++++++
arch/arm64/include/asm/io.h | 1 +
arch/arm64/include/asm/memory.h | 2 +-
arch/arm64/include/asm/mmu.h | 1 +
arch/arm64/kernel/early_printk.c | 8 +-
arch/arm64/kernel/head.S | 9 +-
arch/arm64/kernel/setup.c | 4 +
arch/arm64/mm/ioremap.c | 85 +++++++++++++
arch/arm64/mm/mmu.c | 44 +------
arch/x86/Kconfig | 1 +
arch/x86/include/asm/Kbuild | 1 +
arch/x86/include/asm/fixmap.h | 6 +
arch/x86/include/asm/io.h | 14 +--
arch/x86/mm/ioremap.c | 224 +--------------------------------
arch/x86/mm/pgtable_32.c | 2 +-
include/asm-generic/early_ioremap.h | 42 +++++++
mm/Kconfig | 3 +
mm/Makefile | 1 +
mm/early_ioremap.c | 245 ++++++++++++++++++++++++++++++++++++
23 files changed, 482 insertions(+), 289 deletions(-)
create mode 100644 arch/arm64/include/asm/fixmap.h
create mode 100644 include/asm-generic/early_ioremap.h
create mode 100644 mm/early_ioremap.c
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL] generic early_ioremap support
2014-03-13 2:29 [GIT PULL] generic early_ioremap support Mark Salter
@ 2014-03-13 2:53 ` Andrew Morton
2014-03-13 10:41 ` Catalin Marinas
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2014-03-13 2:53 UTC (permalink / raw)
To: Mark Salter; +Cc: linux-kernel
On Wed, 12 Mar 2014 22:29:48 -0400 Mark Salter <msalter@redhat.com> wrote:
> Hi Andrew,
>
> Could you add this series into the -mm tree for v3.15?
>
> The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:
>
> Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)
>
> are available in the git repository at:
>
>
> git://github.com/mosalter/linux.git tags/for-v3.15
>
> for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:
>
> doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)
>
> ----------------------------------------------------------------
> generic early_ioremap support
Spose so. I was hoping the x86 and arm people might do it. Has there
been sufficient feedback from those parties?
I don't actually do git pulls - I'll grab the patches off the mailing
list, if they're up to date? (Sorry, it doesn't come up very often
so it isn't worth getting set up for).
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL] generic early_ioremap support
2014-03-13 2:53 ` Andrew Morton
@ 2014-03-13 10:41 ` Catalin Marinas
0 siblings, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2014-03-13 10:41 UTC (permalink / raw)
To: Andrew Morton; +Cc: Mark Salter, linux-kernel
On Wed, Mar 12, 2014 at 07:53:48PM -0700, Andrew Morton wrote:
> On Wed, 12 Mar 2014 22:29:48 -0400 Mark Salter <msalter@redhat.com> wrote:
> > Could you add this series into the -mm tree for v3.15?
> >
> > The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:
> >
> > Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)
> >
> > are available in the git repository at:
> >
> >
> > git://github.com/mosalter/linux.git tags/for-v3.15
> >
> > for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:
> >
> > doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)
> >
> > ----------------------------------------------------------------
> > generic early_ioremap support
>
> Spose so. I was hoping the x86 and arm people might do it. Has there
> been sufficient feedback from those parties?
Both x86 and arm64 people acked these patches and we were wondering how
should they get in. Since they touch mm/, Mark thought you could take
them.
--
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-13 10:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-13 2:29 [GIT PULL] generic early_ioremap support Mark Salter
2014-03-13 2:53 ` Andrew Morton
2014-03-13 10:41 ` Catalin Marinas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).