All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Andreas Schwab <schwab@linux-m68k.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Paul Mackerras <paulus@samba.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH] powerpc/32s: Setup the early hash table at all time.
Date: Sat, 7 Nov 2020 10:12:27 +0100	[thread overview]
Message-ID: <30b6696d-b78e-cb95-6700-70b69e3947ba@csgroup.eu> (raw)
In-Reply-To: <87wnz8vizm.fsf@igel.home>



Le 29/10/2020 à 22:07, Andreas Schwab a écrit :
> On Okt 01 2020, Christophe Leroy wrote:
> 
>> At the time being, an early hash table is set up when
>> CONFIG_KASAN is selected.
>>
>> There is nothing wrong with setting such an early hash table
>> all the time, even if it is not used. This is a statically
>> allocated 256 kB table which lies in the init data section.
>>
>> This makes the code simpler and may in the future allow to
>> setup early IO mappings with fixmap instead of hard coding BATs.
>>
>> Put create_hpte() and flush_hash_pages() in the .ref.text section
>> in order to avoid warning for the reference to early_hash[]. This
>> reference is removed by MMU_init_hw_patch() before init memory is
>> freed.
> 
> This breaks booting on the iBook G4.
> 

Can you test patch 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/9e225a856a8b22e0e77587ee22ab7a2f5bca8753.1604740029.git.christophe.leroy@csgroup.eu/

Thanks
Christophe

WARNING: multiple messages have this Message-ID (diff)
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Andreas Schwab <schwab@linux-m68k.org>
Cc: linuxppc-dev@lists.ozlabs.org, Paul Mackerras <paulus@samba.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] powerpc/32s: Setup the early hash table at all time.
Date: Sat, 7 Nov 2020 10:12:27 +0100	[thread overview]
Message-ID: <30b6696d-b78e-cb95-6700-70b69e3947ba@csgroup.eu> (raw)
In-Reply-To: <87wnz8vizm.fsf@igel.home>



Le 29/10/2020 à 22:07, Andreas Schwab a écrit :
> On Okt 01 2020, Christophe Leroy wrote:
> 
>> At the time being, an early hash table is set up when
>> CONFIG_KASAN is selected.
>>
>> There is nothing wrong with setting such an early hash table
>> all the time, even if it is not used. This is a statically
>> allocated 256 kB table which lies in the init data section.
>>
>> This makes the code simpler and may in the future allow to
>> setup early IO mappings with fixmap instead of hard coding BATs.
>>
>> Put create_hpte() and flush_hash_pages() in the .ref.text section
>> in order to avoid warning for the reference to early_hash[]. This
>> reference is removed by MMU_init_hw_patch() before init memory is
>> freed.
> 
> This breaks booting on the iBook G4.
> 

Can you test patch 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/9e225a856a8b22e0e77587ee22ab7a2f5bca8753.1604740029.git.christophe.leroy@csgroup.eu/

Thanks
Christophe

  parent reply	other threads:[~2020-11-07  9:12 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-01 15:35 [PATCH] powerpc/32s: Setup the early hash table at all time Christophe Leroy
2020-10-01 15:35 ` Christophe Leroy
2020-10-09  6:03 ` Michael Ellerman
2020-10-09  6:03   ` Michael Ellerman
2020-10-29 21:07 ` Andreas Schwab
2020-10-29 21:07   ` Andreas Schwab
2020-10-30  5:19   ` Michael Ellerman
2020-10-30  5:19     ` Michael Ellerman
2020-10-30  9:09     ` Andreas Schwab
2020-10-30  9:09       ` Andreas Schwab
2020-10-30 13:00       ` Christophe Leroy
2020-10-30 13:00         ` Christophe Leroy
2020-10-30 13:11         ` Andreas Schwab
2020-10-30 13:11           ` Andreas Schwab
2020-11-03  7:41           ` Christophe Leroy
2020-11-03  7:41             ` Christophe Leroy
2020-11-03  8:43             ` Andreas Schwab
2020-11-03  8:43               ` Andreas Schwab
2020-11-03  8:56             ` Andreas Schwab
2020-11-03  8:56               ` Andreas Schwab
2020-11-03 18:58             ` Serge Belyshev
2020-11-03 18:58               ` Serge Belyshev
2020-11-04  6:44               ` Christophe Leroy
2020-11-04  6:44                 ` Christophe Leroy
2020-11-04  7:57                 ` Serge Belyshev
2020-11-04  7:57                   ` Serge Belyshev
2020-11-04  9:28                   ` Serge Belyshev
2020-11-04  9:28                     ` Serge Belyshev
2020-11-04 14:53                     ` Serge Belyshev
2020-11-04 14:53                       ` Serge Belyshev
2020-11-07  9:12   ` Christophe Leroy [this message]
2020-11-07  9:12     ` Christophe Leroy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=30b6696d-b78e-cb95-6700-70b69e3947ba@csgroup.eu \
    --to=christophe.leroy@csgroup.eu \
    --cc=benh@kernel.crashing.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mpe@ellerman.id.au \
    --cc=paulus@samba.org \
    --cc=schwab@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.