All of lore.kernel.org
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@suse.de>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
	david.vrabel@citrix.com, konrad.wilk@oracle.com, luto@kernel.org,
	linux-kernel@vger.kernel.org, xen-devel@lists.xenproject.org,
	virtualization@lists.linux-foundation.org
Subject: Re: [PATCH 0/3] Fix and cleanup for 32-bit PV sysexit
Date: Thu, 19 Nov 2015 13:10:44 +0100	[thread overview]
Message-ID: <20151119121044.GD5953@pd.tnic> (raw)
In-Reply-To: <1447877179-2775-1-git-send-email-boris.ostrovsky@oracle.com>

On Wed, Nov 18, 2015 at 03:06:16PM -0500, Boris Ostrovsky wrote:
> The first patch fixes Xen PV regression introduced by 32-bit rewrite. Unlike the
> earlier version it uses ALTERNATIVE instruction and avoids using xen_sysexit
> (and sysret32 in compat mode) pv ops, as suggested by Andy. (I ended up patching
> TEST with XOR to avoid extra NOPs, even though I said yesterday it would be
> wrong. It's not wrong)
> 
> As result of this patch irq_enable_sysexit and usergs_sysret32 pv ops are not
> used anymore by anyone and so can be removed.
> 
> Boris Ostrovsky (3):
>   x86/xen: Avoid fast syscall path for Xen PV guests
>   x86: irq_enable_sysexit pv op is no longer needed
>   x86: usergs_sysret32 pv op is no longer needed
> 
>  arch/x86/entry/entry_32.S             | 11 ++++-------
>  arch/x86/entry/entry_64_compat.S      | 16 ++++++----------
>  arch/x86/include/asm/cpufeature.h     |  1 +
>  arch/x86/include/asm/paravirt.h       | 12 ------------
>  arch/x86/include/asm/paravirt_types.h | 17 -----------------
>  arch/x86/kernel/asm-offsets.c         |  3 ---
>  arch/x86/kernel/asm-offsets_64.c      |  1 -
>  arch/x86/kernel/paravirt.c            | 12 ------------
>  arch/x86/kernel/paravirt_patch_32.c   |  2 --
>  arch/x86/kernel/paravirt_patch_64.c   |  3 ---
>  arch/x86/xen/enlighten.c              |  7 +++----
>  arch/x86/xen/xen-asm_32.S             | 14 --------------
>  arch/x86/xen/xen-asm_64.S             | 19 -------------------
>  arch/x86/xen/xen-ops.h                |  3 ---
>  14 files changed, 14 insertions(+), 107 deletions(-)

Can't argue with that diffstat!

:-)

-- 
Regards/Gruss,
    Boris.

SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg)
-- 

WARNING: multiple messages have this Message-ID (diff)
From: Borislav Petkov <bp@suse.de>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: konrad.wilk@oracle.com, linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org, mingo@redhat.com,
	david.vrabel@citrix.com, luto@kernel.org, hpa@zytor.com,
	xen-devel@lists.xenproject.org, tglx@linutronix.de
Subject: Re: [PATCH 0/3] Fix and cleanup for 32-bit PV sysexit
Date: Thu, 19 Nov 2015 13:10:44 +0100	[thread overview]
Message-ID: <20151119121044.GD5953@pd.tnic> (raw)
In-Reply-To: <1447877179-2775-1-git-send-email-boris.ostrovsky@oracle.com>

On Wed, Nov 18, 2015 at 03:06:16PM -0500, Boris Ostrovsky wrote:
> The first patch fixes Xen PV regression introduced by 32-bit rewrite. Unlike the
> earlier version it uses ALTERNATIVE instruction and avoids using xen_sysexit
> (and sysret32 in compat mode) pv ops, as suggested by Andy. (I ended up patching
> TEST with XOR to avoid extra NOPs, even though I said yesterday it would be
> wrong. It's not wrong)
> 
> As result of this patch irq_enable_sysexit and usergs_sysret32 pv ops are not
> used anymore by anyone and so can be removed.
> 
> Boris Ostrovsky (3):
>   x86/xen: Avoid fast syscall path for Xen PV guests
>   x86: irq_enable_sysexit pv op is no longer needed
>   x86: usergs_sysret32 pv op is no longer needed
> 
>  arch/x86/entry/entry_32.S             | 11 ++++-------
>  arch/x86/entry/entry_64_compat.S      | 16 ++++++----------
>  arch/x86/include/asm/cpufeature.h     |  1 +
>  arch/x86/include/asm/paravirt.h       | 12 ------------
>  arch/x86/include/asm/paravirt_types.h | 17 -----------------
>  arch/x86/kernel/asm-offsets.c         |  3 ---
>  arch/x86/kernel/asm-offsets_64.c      |  1 -
>  arch/x86/kernel/paravirt.c            | 12 ------------
>  arch/x86/kernel/paravirt_patch_32.c   |  2 --
>  arch/x86/kernel/paravirt_patch_64.c   |  3 ---
>  arch/x86/xen/enlighten.c              |  7 +++----
>  arch/x86/xen/xen-asm_32.S             | 14 --------------
>  arch/x86/xen/xen-asm_64.S             | 19 -------------------
>  arch/x86/xen/xen-ops.h                |  3 ---
>  14 files changed, 14 insertions(+), 107 deletions(-)

Can't argue with that diffstat!

:-)

-- 
Regards/Gruss,
    Boris.

SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg)
-- 
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

  parent reply	other threads:[~2015-11-19 12:10 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-18 20:06 [PATCH 0/3] Fix and cleanup for 32-bit PV sysexit Boris Ostrovsky
2015-11-18 20:06 ` [PATCH 1/3] x86/xen: Avoid fast syscall path for Xen PV guests Boris Ostrovsky
2015-11-18 20:21   ` Andy Lutomirski
2015-11-18 20:21   ` Andy Lutomirski
2015-11-18 20:21     ` Andy Lutomirski
2015-11-18 20:47     ` Borislav Petkov
2015-11-18 20:47     ` Borislav Petkov
2015-11-18 20:47       ` Borislav Petkov
2015-11-18 20:50     ` Brian Gerst
2015-11-18 20:50     ` Brian Gerst
2015-11-18 20:50     ` Brian Gerst
2015-11-18 20:58       ` Andy Lutomirski
2015-11-18 20:58       ` Andy Lutomirski
2015-11-18 20:58         ` Andy Lutomirski
2015-11-18 22:05         ` Boris Ostrovsky
2015-11-18 22:05         ` Boris Ostrovsky
2015-11-18 22:05           ` Boris Ostrovsky
2015-11-19 12:08     ` Borislav Petkov
2015-11-19 12:08     ` Borislav Petkov
2015-11-19 12:08       ` Borislav Petkov
2015-11-18 20:06 ` Boris Ostrovsky
2015-11-18 20:06 ` Boris Ostrovsky
2015-11-18 20:06 ` [PATCH 2/3] x86: irq_enable_sysexit pv op is no longer needed Boris Ostrovsky
2015-11-18 20:06 ` Boris Ostrovsky
2015-11-18 20:06   ` Boris Ostrovsky
2015-11-18 20:11   ` Konrad Rzeszutek Wilk
2015-11-18 20:34     ` Boris Ostrovsky
2015-11-18 20:34       ` Boris Ostrovsky
2015-11-18 21:16       ` Konrad Rzeszutek Wilk
2015-11-18 20:34     ` Boris Ostrovsky
2015-11-18 20:23   ` Andy Lutomirski
2015-11-18 20:23   ` Andy Lutomirski
2015-11-18 20:23     ` Andy Lutomirski
2015-11-18 20:06 ` [PATCH 3/3] x86: usergs_sysret32 " Boris Ostrovsky
2015-11-18 20:06 ` Boris Ostrovsky
2015-11-18 20:26   ` Andy Lutomirski
2015-11-18 20:26   ` Andy Lutomirski
2015-11-18 20:26     ` Andy Lutomirski
2015-11-18 20:06 ` Boris Ostrovsky
2015-11-19 12:10 ` [PATCH 0/3] Fix and cleanup for 32-bit PV sysexit Borislav Petkov
2015-11-19 12:10 ` Borislav Petkov [this message]
2015-11-19 12:10   ` Borislav Petkov
  -- strict thread matches above, loose matches on Subject: below --
2015-11-18 20:06 Boris Ostrovsky
2015-11-18 20:06 Boris Ostrovsky

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=20151119121044.GD5953@pd.tnic \
    --to=bp@suse.de \
    --cc=boris.ostrovsky@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=hpa@zytor.com \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=virtualization@lists.linux-foundation.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.