All of lore.kernel.org
 help / color / mirror / Atom feed
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Juergen Gross <jgross@suse.com>,
	xen-devel@lists.xenproject.org, x86@kernel.org,
	linux-kernel@vger.kernel.org
Cc: Stefano Stabellini <sstabellini@kernel.org>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH v3 3/7] x86/xen: drop tests for highmem in pv code
Date: Sat, 8 Aug 2020 22:22:07 -0400	[thread overview]
Message-ID: <60f40558-a3a8-2c1e-2c32-09f93bfca724@oracle.com> (raw)
In-Reply-To: <20200807083826.16794-4-jgross@suse.com>

On 8/7/20 4:38 AM, Juergen Gross wrote:
> With support for 32-bit pv guests gone pure pv-code no longer needs to
> test for highmem. Dropping those tests removes the need for flushing
> in some places.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>


with a suggestion


> ---
>  arch/x86/xen/enlighten_pv.c |  11 ++-
>  arch/x86/xen/mmu_pv.c       | 138 ++++++++++++++----------------------
>  2 files changed, 57 insertions(+), 92 deletions(-)
>
> diff --git a/arch/x86/xen/enlighten_pv.c b/arch/x86/xen/enlighten_pv.c
> index 7d90b3da8bb4..9fec952f84f3 100644
> --- a/arch/x86/xen/enlighten_pv.c
> +++ b/arch/x86/xen/enlighten_pv.c
> @@ -347,6 +347,7 @@ static void set_aliased_prot(void *v, pgprot_t prot)
>  	unsigned long pfn;
>  	struct page *page;
>  	unsigned char dummy;
> +	void *av;


to rename this to va since you are modifying those lines anyway.


>  
>  	ptep = lookup_address((unsigned long)v, &level);
>  	BUG_ON(ptep == NULL);
> @@ -383,14 +384,10 @@ static void set_aliased_prot(void *v, pgprot_t prot)
>  	if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
>  		BUG();
>  
> -	if (!PageHighMem(page)) {
> -		void *av = __va(PFN_PHYS(pfn));
> +	av = __va(PFN_PHYS(pfn));
>  



WARNING: multiple messages have this Message-ID (diff)
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Juergen Gross <jgross@suse.com>,
	xen-devel@lists.xenproject.org, x86@kernel.org,
	linux-kernel@vger.kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>,
	Stefano Stabellini <sstabellini@kernel.org>,
	Borislav Petkov <bp@alien8.de>, Ingo Molnar <mingo@redhat.com>,
	"H. Peter Anvin" <hpa@zytor.com>
Subject: Re: [PATCH v3 3/7] x86/xen: drop tests for highmem in pv code
Date: Sat, 8 Aug 2020 22:22:07 -0400	[thread overview]
Message-ID: <60f40558-a3a8-2c1e-2c32-09f93bfca724@oracle.com> (raw)
In-Reply-To: <20200807083826.16794-4-jgross@suse.com>

On 8/7/20 4:38 AM, Juergen Gross wrote:
> With support for 32-bit pv guests gone pure pv-code no longer needs to
> test for highmem. Dropping those tests removes the need for flushing
> in some places.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>


with a suggestion


> ---
>  arch/x86/xen/enlighten_pv.c |  11 ++-
>  arch/x86/xen/mmu_pv.c       | 138 ++++++++++++++----------------------
>  2 files changed, 57 insertions(+), 92 deletions(-)
>
> diff --git a/arch/x86/xen/enlighten_pv.c b/arch/x86/xen/enlighten_pv.c
> index 7d90b3da8bb4..9fec952f84f3 100644
> --- a/arch/x86/xen/enlighten_pv.c
> +++ b/arch/x86/xen/enlighten_pv.c
> @@ -347,6 +347,7 @@ static void set_aliased_prot(void *v, pgprot_t prot)
>  	unsigned long pfn;
>  	struct page *page;
>  	unsigned char dummy;
> +	void *av;


to rename this to va since you are modifying those lines anyway.


>  
>  	ptep = lookup_address((unsigned long)v, &level);
>  	BUG_ON(ptep == NULL);
> @@ -383,14 +384,10 @@ static void set_aliased_prot(void *v, pgprot_t prot)
>  	if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
>  		BUG();
>  
> -	if (!PageHighMem(page)) {
> -		void *av = __va(PFN_PHYS(pfn));
> +	av = __va(PFN_PHYS(pfn));
>  




  parent reply	other threads:[~2020-08-09  2:24 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-07  8:38 [PATCH v3 0/7] Remove 32-bit Xen PV guest support Juergen Gross
2020-08-07  8:38 ` Juergen Gross
2020-08-07  8:38 ` Juergen Gross
2020-08-07  8:38 ` [PATCH v3 1/7] x86/xen: remove " Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-09  2:01   ` Boris Ostrovsky
2020-08-09  2:01     ` Boris Ostrovsky
2020-08-10  4:36     ` Jürgen Groß
2020-08-10  4:36       ` Jürgen Groß
2020-08-07  8:38 ` [PATCH v3 2/7] x86/xen: eliminate xen-asm_64.S Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-09  2:04   ` Boris Ostrovsky
2020-08-09  2:04     ` Boris Ostrovsky
2020-08-10  4:36     ` Jürgen Groß
2020-08-10  4:36       ` Jürgen Groß
2020-08-07  8:38 ` [PATCH v3 3/7] x86/xen: drop tests for highmem in pv code Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07 11:18   ` kernel test robot
2020-08-07 11:18     ` kernel test robot
2020-08-07 11:18     ` kernel test robot
2020-08-09  2:22   ` Boris Ostrovsky [this message]
2020-08-09  2:22     ` Boris Ostrovsky
2020-08-10  4:37     ` Jürgen Groß
2020-08-10  4:37       ` Jürgen Groß
2020-08-07  8:38 ` [PATCH v3 4/7] x86/paravirt: remove 32-bit support from PARAVIRT_XXL Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07  9:39   ` peterz
2020-08-07  9:39     ` peterz
2020-08-07  9:39     ` peterz
2020-08-07 10:02     ` Jürgen Groß
2020-08-07 10:02       ` Jürgen Groß
2020-08-07 10:02       ` Jürgen Groß
2020-08-07 10:21       ` peterz
2020-08-07 10:21         ` peterz
2020-08-07 10:21         ` peterz
2020-08-09  2:34   ` Boris Ostrovsky
2020-08-09  2:34     ` Boris Ostrovsky
2020-08-09  2:34     ` Boris Ostrovsky
2020-08-10  4:39     ` Jürgen Groß
2020-08-10  4:39       ` Jürgen Groß
2020-08-10  4:39       ` Jürgen Groß
2020-08-10 16:53       ` Boris Ostrovsky
2020-08-10 16:53         ` Boris Ostrovsky
2020-08-10 16:53         ` Boris Ostrovsky
2020-08-10 18:42         ` Jürgen Groß
2020-08-10 18:42           ` Jürgen Groß
2020-08-10 18:42           ` Jürgen Groß
2020-08-07  8:38 ` [PATCH v3 5/7] x86/paravirt: cleanup paravirt macros Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07  8:38 ` [PATCH v3 6/7] x86/paravirt: use CONFIG_PARAVIRT_XXL instead of CONFIG_PARAVIRT Juergen Gross
2020-08-07  8:38   ` Juergen Gross
2020-08-07  8:38 ` [PATCH v3 7/7] x86/entry/32: revert "Fix XEN_PV build dependency" Juergen Gross

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=60f40558-a3a8-2c1e-2c32-09f93bfca724@oracle.com \
    --to=boris.ostrovsky@oracle.com \
    --cc=bp@alien8.de \
    --cc=hpa@zytor.com \
    --cc=jgross@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=sstabellini@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=xen-devel@lists.xenproject.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.