All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: nommu: Implement dummy early_paging_init()
@ 2013-10-23 13:08 Thierry Reding
  2013-11-05 19:47 ` Olof Johansson
  0 siblings, 1 reply; 4+ messages in thread
From: Thierry Reding @ 2013-10-23 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

No-MMU configurations currenty fail to build because they are missing
the early_paging_init() symbol.

Signed-off-by: Thierry Reding <treding@nvidia.com>
---
 arch/arm/mm/nommu.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/mm/nommu.c b/arch/arm/mm/nommu.c
index 34d4ab2..5c668b7 100644
--- a/arch/arm/mm/nommu.c
+++ b/arch/arm/mm/nommu.c
@@ -296,6 +296,15 @@ void __init sanity_check_meminfo(void)
 }
 
 /*
+ * early_paging_init() recreates boot time page table setup, allowing machines
+ * to switch over to a high (>4G) address space on LPAE systems
+ */
+void __init early_paging_init(const struct machine_desc *mdesc,
+			      struct proc_info_list *procinfo)
+{
+}
+
+/*
  * paging_init() sets up the page tables, initialises the zone memory
  * maps, and sets up the zero page, bad page and bad page tables.
  */
-- 
1.8.4

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

* [PATCH] ARM: nommu: Implement dummy early_paging_init()
  2013-10-23 13:08 [PATCH] ARM: nommu: Implement dummy early_paging_init() Thierry Reding
@ 2013-11-05 19:47 ` Olof Johansson
  2013-11-06 12:10   ` Thierry Reding
  0 siblings, 1 reply; 4+ messages in thread
From: Olof Johansson @ 2013-11-05 19:47 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Oct 23, 2013 at 6:08 AM, Thierry Reding
<thierry.reding@gmail.com> wrote:
> No-MMU configurations currenty fail to build because they are missing
> the early_paging_init() symbol.
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>

Acked-by: Olof Johansson <olof@lixom.net>

This is still showing up on -next with at91x40_defconfig. Can you feed
it to the patch tracker if you haven't already?


Thanks,

-Olof

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

* [PATCH] ARM: nommu: Implement dummy early_paging_init()
  2013-11-05 19:47 ` Olof Johansson
@ 2013-11-06 12:10   ` Thierry Reding
  2013-11-06 15:29     ` Olof Johansson
  0 siblings, 1 reply; 4+ messages in thread
From: Thierry Reding @ 2013-11-06 12:10 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 05, 2013 at 11:47:13AM -0800, Olof Johansson wrote:
> On Wed, Oct 23, 2013 at 6:08 AM, Thierry Reding
> <thierry.reding@gmail.com> wrote:
> > No-MMU configurations currenty fail to build because they are missing
> > the early_paging_init() symbol.
> >
> > Signed-off-by: Thierry Reding <treding@nvidia.com>
> 
> Acked-by: Olof Johansson <olof@lixom.net>
> 
> This is still showing up on -next with at91x40_defconfig. Can you feed
> it to the patch tracker if you haven't already?

Done. I'm not sure exactly what the prerequisites are for submitting a
patch to the tracker. The help text on the website says patches should
be reviewed on the mailing list first and that's what I was waiting for.
Is there some amount of time (a week or two) after which silence can be
considered acknowledgement?

Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20131106/545a44f4/attachment.sig>

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

* [PATCH] ARM: nommu: Implement dummy early_paging_init()
  2013-11-06 12:10   ` Thierry Reding
@ 2013-11-06 15:29     ` Olof Johansson
  0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2013-11-06 15:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Nov 6, 2013 at 4:10 AM, Thierry Reding <thierry.reding@gmail.com> wrote:
> On Tue, Nov 05, 2013 at 11:47:13AM -0800, Olof Johansson wrote:
>> On Wed, Oct 23, 2013 at 6:08 AM, Thierry Reding
>> <thierry.reding@gmail.com> wrote:
>> > No-MMU configurations currenty fail to build because they are missing
>> > the early_paging_init() symbol.
>> >
>> > Signed-off-by: Thierry Reding <treding@nvidia.com>
>>
>> Acked-by: Olof Johansson <olof@lixom.net>
>>
>> This is still showing up on -next with at91x40_defconfig. Can you feed
>> it to the patch tracker if you haven't already?
>
> Done. I'm not sure exactly what the prerequisites are for submitting a
> patch to the tracker. The help text on the website says patches should
> be reviewed on the mailing list first and that's what I was waiting for.
> Is there some amount of time (a week or two) after which silence can be
> considered acknowledgement?

Well, I just reviewed it for you (well, acked it :-). It's always hard
to tell with a posted patch that hasn't received comments, but after a
while it's usually ok to post to the tracker.

The LAKML volume is too high to see every patch and review it. I'm
sure Russell will let you know if you get too trigger happy at sending
to the tracker too. :-)


-Olof

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

end of thread, other threads:[~2013-11-06 15:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-23 13:08 [PATCH] ARM: nommu: Implement dummy early_paging_init() Thierry Reding
2013-11-05 19:47 ` Olof Johansson
2013-11-06 12:10   ` Thierry Reding
2013-11-06 15:29     ` Olof Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.