All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
@ 2019-09-21 10:08 Julien Grall
  2019-09-24 14:13 ` Volodymyr Babchuk
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Julien Grall @ 2019-09-21 10:08 UTC (permalink / raw)
  To: xen-devel; +Cc: Julien Grall, Stefano Stabellini, Volodymyr Babchuk

At the moment, boot pagetables are only cleared once at boot. This means
when booting CPU2 (and onwards) then boot pagetables will not be
cleared.

To keep the interface exactly the same for all secondary CPU, the boot
pagetables are now cleared before bringing-up each secondary CPU.

Signed-off-by: Julien Grall <julien.grall@arm.com>
---
 xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
index 1129dc28c8..e14ee76ff8 100644
--- a/xen/arch/arm/mm.c
+++ b/xen/arch/arm/mm.c
@@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
 
     switch_ttbr(ttbr);
 
-    /* Clear the copy of the boot pagetables. Each secondary CPU
-     * rebuilds these itself (see head.S) */
+    xen_pt_enforce_wnx();
+
+#ifdef CONFIG_ARM_32
+    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
+    per_cpu(xen_dommap, 0) = cpu0_dommap;
+#endif
+}
+
+static void clear_boot_pagetables(void)
+{
+    /*
+     * Clear the copy of the boot pagetables. Each secondary CPU
+     * rebuilds these itself (see head.S)
+     */
     clear_table(boot_pgtable);
 #ifdef CONFIG_ARM_64
     clear_table(boot_first);
@@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
 #endif
     clear_table(boot_second);
     clear_table(boot_third);
-
-    xen_pt_enforce_wnx();
-
-#ifdef CONFIG_ARM_32
-    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
-    per_cpu(xen_dommap, 0) = cpu0_dommap;
-#endif
 }
 
 #ifdef CONFIG_ARM_64
 int init_secondary_pagetables(int cpu)
 {
+    clear_boot_pagetables();
+
     /* Set init_ttbr for this CPU coming up. All CPus share a single setof
      * pagetables, but rewrite it each time for consistency with 32 bit. */
     init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
@@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
     per_cpu(xen_pgtable, cpu) = first;
     per_cpu(xen_dommap, cpu) = domheap;
 
+    clear_boot_pagetables();
+
     /* Set init_ttbr for this CPU coming up */
     init_ttbr = __pa(first);
     clean_dcache(init_ttbr);
-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-09-21 10:08 [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU Julien Grall
@ 2019-09-24 14:13 ` Volodymyr Babchuk
  2019-10-02 17:47 ` Julien Grall
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Volodymyr Babchuk @ 2019-09-24 14:13 UTC (permalink / raw)
  To: Julien Grall; +Cc: xen-devel, Stefano Stabellini, Volodymyr Babchuk


Julien Grall writes:

> At the moment, boot pagetables are only cleared once at boot. This means
> when booting CPU2 (and onwards) then boot pagetables will not be
> cleared.
>
> To keep the interface exactly the same for all secondary CPU, the boot
> pagetables are now cleared before bringing-up each secondary CPU.
>
> Signed-off-by: Julien Grall <julien.grall@arm.com>
Taking into account fixed remark below:

Reviewed-by: Volodymyr Babchuk <volodymyr_babchuk@epam.com>

> ---
>  xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>  1 file changed, 18 insertions(+), 9 deletions(-)
>
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index 1129dc28c8..e14ee76ff8 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>  
>      switch_ttbr(ttbr);
>  
> -    /* Clear the copy of the boot pagetables. Each secondary CPU
> -     * rebuilds these itself (see head.S) */
> +    xen_pt_enforce_wnx();
> +
> +#ifdef CONFIG_ARM_32
> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
> +#endif
> +}
> +
> +static void clear_boot_pagetables(void)
> +{
> +    /*
> +     * Clear the copy of the boot pagetables. Each secondary CPU
> +     * rebuilds these itself (see head.S)
Missing full stop.

> +     */
>      clear_table(boot_pgtable);
>  #ifdef CONFIG_ARM_64
>      clear_table(boot_first);
> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>  #endif
>      clear_table(boot_second);
>      clear_table(boot_third);
> -
> -    xen_pt_enforce_wnx();
> -
> -#ifdef CONFIG_ARM_32
> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
> -#endif
>  }
>  
>  #ifdef CONFIG_ARM_64
>  int init_secondary_pagetables(int cpu)
>  {
> +    clear_boot_pagetables();
> +
>      /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>       * pagetables, but rewrite it each time for consistency with 32 bit. */
>      init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>      per_cpu(xen_pgtable, cpu) = first;
>      per_cpu(xen_dommap, cpu) = domheap;
>  
> +    clear_boot_pagetables();
> +
>      /* Set init_ttbr for this CPU coming up */
>      init_ttbr = __pa(first);
>      clean_dcache(init_ttbr);


-- 
Volodymyr Babchuk at EPAM
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-09-21 10:08 [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU Julien Grall
  2019-09-24 14:13 ` Volodymyr Babchuk
@ 2019-10-02 17:47 ` Julien Grall
  2019-10-02 17:47 ` Julien Grall
  2019-10-03  1:22 ` Stefano Stabellini
  3 siblings, 0 replies; 9+ messages in thread
From: Julien Grall @ 2019-10-02 17:47 UTC (permalink / raw)
  To: xen-devel; +Cc: Stefano Stabellini, Volodymyr Babchuk

Ping.

On 9/21/19 11:08 AM, Julien Grall wrote:
> At the moment, boot pagetables are only cleared once at boot. This means
> when booting CPU2 (and onwards) then boot pagetables will not be
> cleared.
> 
> To keep the interface exactly the same for all secondary CPU, the boot
> pagetables are now cleared before bringing-up each secondary CPU.
> 
> Signed-off-by: Julien Grall <julien.grall@arm.com>
> ---
>   xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>   1 file changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index 1129dc28c8..e14ee76ff8 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>   
>       switch_ttbr(ttbr);
>   
> -    /* Clear the copy of the boot pagetables. Each secondary CPU
> -     * rebuilds these itself (see head.S) */
> +    xen_pt_enforce_wnx();
> +
> +#ifdef CONFIG_ARM_32
> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
> +#endif
> +}
> +
> +static void clear_boot_pagetables(void)
> +{
> +    /*
> +     * Clear the copy of the boot pagetables. Each secondary CPU
> +     * rebuilds these itself (see head.S)
> +     */
>       clear_table(boot_pgtable);
>   #ifdef CONFIG_ARM_64
>       clear_table(boot_first);
> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>   #endif
>       clear_table(boot_second);
>       clear_table(boot_third);
> -
> -    xen_pt_enforce_wnx();
> -
> -#ifdef CONFIG_ARM_32
> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
> -#endif
>   }
>   
>   #ifdef CONFIG_ARM_64
>   int init_secondary_pagetables(int cpu)
>   {
> +    clear_boot_pagetables();
> +
>       /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>        * pagetables, but rewrite it each time for consistency with 32 bit. */
>       init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>       per_cpu(xen_pgtable, cpu) = first;
>       per_cpu(xen_dommap, cpu) = domheap;
>   
> +    clear_boot_pagetables();
> +
>       /* Set init_ttbr for this CPU coming up */
>       init_ttbr = __pa(first);
>       clean_dcache(init_ttbr);
> 

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-09-21 10:08 [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU Julien Grall
  2019-09-24 14:13 ` Volodymyr Babchuk
  2019-10-02 17:47 ` Julien Grall
@ 2019-10-02 17:47 ` Julien Grall
  2019-10-03  1:22 ` Stefano Stabellini
  3 siblings, 0 replies; 9+ messages in thread
From: Julien Grall @ 2019-10-02 17:47 UTC (permalink / raw)
  To: xen-devel; +Cc: Stefano Stabellini, Volodymyr Babchuk

Gentle ping.

On 9/21/19 11:08 AM, Julien Grall wrote:
> At the moment, boot pagetables are only cleared once at boot. This means
> when booting CPU2 (and onwards) then boot pagetables will not be
> cleared.
> 
> To keep the interface exactly the same for all secondary CPU, the boot
> pagetables are now cleared before bringing-up each secondary CPU.
> 
> Signed-off-by: Julien Grall <julien.grall@arm.com>
> ---
>   xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>   1 file changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index 1129dc28c8..e14ee76ff8 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>   
>       switch_ttbr(ttbr);
>   
> -    /* Clear the copy of the boot pagetables. Each secondary CPU
> -     * rebuilds these itself (see head.S) */
> +    xen_pt_enforce_wnx();
> +
> +#ifdef CONFIG_ARM_32
> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
> +#endif
> +}
> +
> +static void clear_boot_pagetables(void)
> +{
> +    /*
> +     * Clear the copy of the boot pagetables. Each secondary CPU
> +     * rebuilds these itself (see head.S)
> +     */
>       clear_table(boot_pgtable);
>   #ifdef CONFIG_ARM_64
>       clear_table(boot_first);
> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>   #endif
>       clear_table(boot_second);
>       clear_table(boot_third);
> -
> -    xen_pt_enforce_wnx();
> -
> -#ifdef CONFIG_ARM_32
> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
> -#endif
>   }
>   
>   #ifdef CONFIG_ARM_64
>   int init_secondary_pagetables(int cpu)
>   {
> +    clear_boot_pagetables();
> +
>       /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>        * pagetables, but rewrite it each time for consistency with 32 bit. */
>       init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>       per_cpu(xen_pgtable, cpu) = first;
>       per_cpu(xen_dommap, cpu) = domheap;
>   
> +    clear_boot_pagetables();
> +
>       /* Set init_ttbr for this CPU coming up */
>       init_ttbr = __pa(first);
>       clean_dcache(init_ttbr);
> 

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-09-21 10:08 [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU Julien Grall
                   ` (2 preceding siblings ...)
  2019-10-02 17:47 ` Julien Grall
@ 2019-10-03  1:22 ` Stefano Stabellini
  2019-10-10 14:51   ` Julien Grall
  3 siblings, 1 reply; 9+ messages in thread
From: Stefano Stabellini @ 2019-10-03  1:22 UTC (permalink / raw)
  To: Julien Grall; +Cc: xen-devel, Stefano Stabellini, Volodymyr Babchuk

On Sat, 21 Sep 2019, Julien Grall wrote:
> At the moment, boot pagetables are only cleared once at boot. This means
> when booting CPU2 (and onwards) then boot pagetables will not be
> cleared.
> 
> To keep the interface exactly the same for all secondary CPU, the boot
> pagetables are now cleared before bringing-up each secondary CPU.
> 
> Signed-off-by: Julien Grall <julien.grall@arm.com>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
>  xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>  1 file changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index 1129dc28c8..e14ee76ff8 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>  
>      switch_ttbr(ttbr);
>  
> -    /* Clear the copy of the boot pagetables. Each secondary CPU
> -     * rebuilds these itself (see head.S) */
> +    xen_pt_enforce_wnx();
> +
> +#ifdef CONFIG_ARM_32
> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
> +#endif
> +}
> +
> +static void clear_boot_pagetables(void)
> +{
> +    /*
> +     * Clear the copy of the boot pagetables. Each secondary CPU
> +     * rebuilds these itself (see head.S)
> +     */
>      clear_table(boot_pgtable);
>  #ifdef CONFIG_ARM_64
>      clear_table(boot_first);
> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>  #endif
>      clear_table(boot_second);
>      clear_table(boot_third);
> -
> -    xen_pt_enforce_wnx();
> -
> -#ifdef CONFIG_ARM_32
> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
> -#endif
>  }
>  
>  #ifdef CONFIG_ARM_64
>  int init_secondary_pagetables(int cpu)
>  {
> +    clear_boot_pagetables();
> +
>      /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>       * pagetables, but rewrite it each time for consistency with 32 bit. */
>      init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>      per_cpu(xen_pgtable, cpu) = first;
>      per_cpu(xen_dommap, cpu) = domheap;
>  
> +    clear_boot_pagetables();
> +
>      /* Set init_ttbr for this CPU coming up */
>      init_ttbr = __pa(first);
>      clean_dcache(init_ttbr);
> -- 
> 2.11.0
> 

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-10-03  1:22 ` Stefano Stabellini
@ 2019-10-10 14:51   ` Julien Grall
  2019-10-15 16:36     ` Julien Grall
  0 siblings, 1 reply; 9+ messages in thread
From: Julien Grall @ 2019-10-10 14:51 UTC (permalink / raw)
  To: Stefano Stabellini; +Cc: xen-devel, Volodymyr Babchuk

+Juergen

On 03/10/2019 02:22, Stefano Stabellini wrote:
> On Sat, 21 Sep 2019, Julien Grall wrote:
>> At the moment, boot pagetables are only cleared once at boot. This means
>> when booting CPU2 (and onwards) then boot pagetables will not be
>> cleared.
>>
>> To keep the interface exactly the same for all secondary CPU, the boot
>> pagetables are now cleared before bringing-up each secondary CPU.
>>
>> Signed-off-by: Julien Grall <julien.grall@arm.com>
> 
> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
> 
> 
>> ---
>>   xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>>   1 file changed, 18 insertions(+), 9 deletions(-)
>>
>> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
>> index 1129dc28c8..e14ee76ff8 100644
>> --- a/xen/arch/arm/mm.c
>> +++ b/xen/arch/arm/mm.c
>> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>>   
>>       switch_ttbr(ttbr);
>>   
>> -    /* Clear the copy of the boot pagetables. Each secondary CPU
>> -     * rebuilds these itself (see head.S) */
>> +    xen_pt_enforce_wnx();
>> +
>> +#ifdef CONFIG_ARM_32
>> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
>> +#endif
>> +}
>> +
>> +static void clear_boot_pagetables(void)
>> +{
>> +    /*
>> +     * Clear the copy of the boot pagetables. Each secondary CPU
>> +     * rebuilds these itself (see head.S)
>> +     */
>>       clear_table(boot_pgtable);
>>   #ifdef CONFIG_ARM_64
>>       clear_table(boot_first);
>> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long boot_phys_offset)
>>   #endif
>>       clear_table(boot_second);
>>       clear_table(boot_third);
>> -
>> -    xen_pt_enforce_wnx();
>> -
>> -#ifdef CONFIG_ARM_32
>> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
>> -#endif
>>   }
>>   
>>   #ifdef CONFIG_ARM_64
>>   int init_secondary_pagetables(int cpu)
>>   {
>> +    clear_boot_pagetables();
>> +
>>       /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>>        * pagetables, but rewrite it each time for consistency with 32 bit. */
>>       init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
>> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>>       per_cpu(xen_pgtable, cpu) = first;
>>       per_cpu(xen_dommap, cpu) = domheap;
>>   
>> +    clear_boot_pagetables();
>> +
>>       /* Set init_ttbr for this CPU coming up */
>>       init_ttbr = __pa(first);
>>       clean_dcache(init_ttbr);
>> -- 
>> 2.11.0
>>

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-10-10 14:51   ` Julien Grall
@ 2019-10-15 16:36     ` Julien Grall
  2019-10-16 11:19       ` Julien Grall
  0 siblings, 1 reply; 9+ messages in thread
From: Julien Grall @ 2019-10-15 16:36 UTC (permalink / raw)
  To: Stefano Stabellini; +Cc: xen-devel, Volodymyr Babchuk

Hi,

I actually forgot to CC Juergen. No wonder why I had no answer :(.

Cheers,

On 10/10/19 3:51 PM, Julien Grall wrote:
> +Juergen
> 
> On 03/10/2019 02:22, Stefano Stabellini wrote:
>> On Sat, 21 Sep 2019, Julien Grall wrote:
>>> At the moment, boot pagetables are only cleared once at boot. This means
>>> when booting CPU2 (and onwards) then boot pagetables will not be
>>> cleared.
>>>
>>> To keep the interface exactly the same for all secondary CPU, the boot
>>> pagetables are now cleared before bringing-up each secondary CPU.
>>>
>>> Signed-off-by: Julien Grall <julien.grall@arm.com>
>>
>> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
>>
>>
>>> ---
>>>   xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>>>   1 file changed, 18 insertions(+), 9 deletions(-)
>>>
>>> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
>>> index 1129dc28c8..e14ee76ff8 100644
>>> --- a/xen/arch/arm/mm.c
>>> +++ b/xen/arch/arm/mm.c
>>> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long 
>>> boot_phys_offset)
>>>       switch_ttbr(ttbr);
>>> -    /* Clear the copy of the boot pagetables. Each secondary CPU
>>> -     * rebuilds these itself (see head.S) */
>>> +    xen_pt_enforce_wnx();
>>> +
>>> +#ifdef CONFIG_ARM_32
>>> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>>> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
>>> +#endif
>>> +}
>>> +
>>> +static void clear_boot_pagetables(void)
>>> +{
>>> +    /*
>>> +     * Clear the copy of the boot pagetables. Each secondary CPU
>>> +     * rebuilds these itself (see head.S)
>>> +     */
>>>       clear_table(boot_pgtable);
>>>   #ifdef CONFIG_ARM_64
>>>       clear_table(boot_first);
>>> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long 
>>> boot_phys_offset)
>>>   #endif
>>>       clear_table(boot_second);
>>>       clear_table(boot_third);
>>> -
>>> -    xen_pt_enforce_wnx();
>>> -
>>> -#ifdef CONFIG_ARM_32
>>> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>>> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
>>> -#endif
>>>   }
>>>   #ifdef CONFIG_ARM_64
>>>   int init_secondary_pagetables(int cpu)
>>>   {
>>> +    clear_boot_pagetables();
>>> +
>>>       /* Set init_ttbr for this CPU coming up. All CPus share a 
>>> single setof
>>>        * pagetables, but rewrite it each time for consistency with 32 
>>> bit. */
>>>       init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
>>> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>>>       per_cpu(xen_pgtable, cpu) = first;
>>>       per_cpu(xen_dommap, cpu) = domheap;
>>> +    clear_boot_pagetables();
>>> +
>>>       /* Set init_ttbr for this CPU coming up */
>>>       init_ttbr = __pa(first);
>>>       clean_dcache(init_ttbr);
>>> -- 
>>> 2.11.0
>>>
> 

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-10-15 16:36     ` Julien Grall
@ 2019-10-16 11:19       ` Julien Grall
  2019-10-16 11:22         ` Jürgen Groß
  0 siblings, 1 reply; 9+ messages in thread
From: Julien Grall @ 2019-10-16 11:19 UTC (permalink / raw)
  To: Stefano Stabellini; +Cc: Juergen Gross, xen-devel, Volodymyr Babchuk

Hi,

Argh forgot again. Maybe the 3rd will be better?

Sorry for the noise.

Cheers,

On 15/10/2019 17:36, Julien Grall wrote:
> Hi,
> 
> I actually forgot to CC Juergen. No wonder why I had no answer :(.
> 
> Cheers,
> 
> On 10/10/19 3:51 PM, Julien Grall wrote:
>> +Juergen
>>
>> On 03/10/2019 02:22, Stefano Stabellini wrote:
>>> On Sat, 21 Sep 2019, Julien Grall wrote:
>>>> At the moment, boot pagetables are only cleared once at boot. This means
>>>> when booting CPU2 (and onwards) then boot pagetables will not be
>>>> cleared.
>>>>
>>>> To keep the interface exactly the same for all secondary CPU, the boot
>>>> pagetables are now cleared before bringing-up each secondary CPU.
>>>>
>>>> Signed-off-by: Julien Grall <julien.grall@arm.com>
>>>
>>> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
>>>
>>>
>>>> ---
>>>>   xen/arch/arm/mm.c | 27 ++++++++++++++++++---------
>>>>   1 file changed, 18 insertions(+), 9 deletions(-)
>>>>
>>>> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
>>>> index 1129dc28c8..e14ee76ff8 100644
>>>> --- a/xen/arch/arm/mm.c
>>>> +++ b/xen/arch/arm/mm.c
>>>> @@ -704,8 +704,20 @@ void __init setup_pagetables(unsigned long 
>>>> boot_phys_offset)
>>>>       switch_ttbr(ttbr);
>>>> -    /* Clear the copy of the boot pagetables. Each secondary CPU
>>>> -     * rebuilds these itself (see head.S) */
>>>> +    xen_pt_enforce_wnx();
>>>> +
>>>> +#ifdef CONFIG_ARM_32
>>>> +    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>>>> +    per_cpu(xen_dommap, 0) = cpu0_dommap;
>>>> +#endif
>>>> +}
>>>> +
>>>> +static void clear_boot_pagetables(void)
>>>> +{
>>>> +    /*
>>>> +     * Clear the copy of the boot pagetables. Each secondary CPU
>>>> +     * rebuilds these itself (see head.S)
>>>> +     */
>>>>       clear_table(boot_pgtable);
>>>>   #ifdef CONFIG_ARM_64
>>>>       clear_table(boot_first);
>>>> @@ -713,18 +725,13 @@ void __init setup_pagetables(unsigned long 
>>>> boot_phys_offset)
>>>>   #endif
>>>>       clear_table(boot_second);
>>>>       clear_table(boot_third);
>>>> -
>>>> -    xen_pt_enforce_wnx();
>>>> -
>>>> -#ifdef CONFIG_ARM_32
>>>> -    per_cpu(xen_pgtable, 0) = cpu0_pgtable;
>>>> -    per_cpu(xen_dommap, 0) = cpu0_dommap;
>>>> -#endif
>>>>   }
>>>>   #ifdef CONFIG_ARM_64
>>>>   int init_secondary_pagetables(int cpu)
>>>>   {
>>>> +    clear_boot_pagetables();
>>>> +
>>>>       /* Set init_ttbr for this CPU coming up. All CPus share a single setof
>>>>        * pagetables, but rewrite it each time for consistency with 32 bit. */
>>>>       init_ttbr = (uintptr_t) xen_pgtable + phys_offset;
>>>> @@ -767,6 +774,8 @@ int init_secondary_pagetables(int cpu)
>>>>       per_cpu(xen_pgtable, cpu) = first;
>>>>       per_cpu(xen_dommap, cpu) = domheap;
>>>> +    clear_boot_pagetables();
>>>> +
>>>>       /* Set init_ttbr for this CPU coming up */
>>>>       init_ttbr = __pa(first);
>>>>       clean_dcache(init_ttbr);
>>>> -- 
>>>> 2.11.0
>>>>
>>
> 

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU
  2019-10-16 11:19       ` Julien Grall
@ 2019-10-16 11:22         ` Jürgen Groß
  0 siblings, 0 replies; 9+ messages in thread
From: Jürgen Groß @ 2019-10-16 11:22 UTC (permalink / raw)
  To: Julien Grall, Stefano Stabellini; +Cc: xen-devel, Volodymyr Babchuk

On 16.10.19 13:19, Julien Grall wrote:
> Hi,
> 
> Argh forgot again. Maybe the 3rd will be better?

Yes! You made it! ;-)

> 
> Sorry for the noise.
> 
> Cheers,
> 
> On 15/10/2019 17:36, Julien Grall wrote:
>> Hi,
>>
>> I actually forgot to CC Juergen. No wonder why I had no answer :(.
>>
>> Cheers,
>>
>> On 10/10/19 3:51 PM, Julien Grall wrote:
>>> +Juergen
>>>
>>> On 03/10/2019 02:22, Stefano Stabellini wrote:
>>>> On Sat, 21 Sep 2019, Julien Grall wrote:
>>>>> At the moment, boot pagetables are only cleared once at boot. This 
>>>>> means
>>>>> when booting CPU2 (and onwards) then boot pagetables will not be
>>>>> cleared.
>>>>>
>>>>> To keep the interface exactly the same for all secondary CPU, the boot
>>>>> pagetables are now cleared before bringing-up each secondary CPU.
>>>>>
>>>>> Signed-off-by: Julien Grall <julien.grall@arm.com>
>>>>
>>>> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

Release-acked-by: Juergen Gross <jgross@suse.com>


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2019-10-16 11:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-21 10:08 [Xen-devel] [RESEND][PATCH for-4.13] xen/arm: mm: Clear boot pagetables before bringing-up each secondary CPU Julien Grall
2019-09-24 14:13 ` Volodymyr Babchuk
2019-10-02 17:47 ` Julien Grall
2019-10-02 17:47 ` Julien Grall
2019-10-03  1:22 ` Stefano Stabellini
2019-10-10 14:51   ` Julien Grall
2019-10-15 16:36     ` Julien Grall
2019-10-16 11:19       ` Julien Grall
2019-10-16 11:22         ` Jürgen Groß

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.