From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Julien Grall <julien.grall@arm.com>
Cc: sstabellini@kernel.org, steve.capper@arm.com,
wei.chen@linaro.org, xen-devel@lists.xen.org
Subject: Re: [PATCH v2 1/2] xen/arm: alternative: Clean-up __apply_alternatives
Date: Wed, 7 Sep 2016 10:13:30 -0400 [thread overview]
Message-ID: <20160907141330.GC9185@char.us.oracle.com> (raw)
In-Reply-To: <1473252644-4078-2-git-send-email-julien.grall@arm.com>
On Wed, Sep 07, 2016 at 01:50:43PM +0100, Julien Grall wrote:
> This patch contains only renaming and comment update. There are no
> functional changes:
> - Don't mix _start and _stext, they both point to the same address
> but the former makes more sense (we are mapping the Xen binary, not
> only the text section).
> - s/text_mfn/xen_mfn/ and s/text_order/xen_order/ to make clear that
> we map the Xen binary.
> - Mention about inittext as alternative may patch this section.
>
> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Signed-off-by: Julien Grall <julien.grall@arm.com>
>
> ---
> Konrad, I added your signed-off by because I squashed your patch [1]
> in it. Let me know if there is any issue for that.
No issues. Albeit it may be odd for me to review my own patch :-)
See below
>
> [1] https://lists.xen.org/archives/html/xen-devel/2016-08/msg02890.html
>
> Changes in v2:
> - Patch added
> ---
> xen/arch/arm/alternative.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/xen/arch/arm/alternative.c b/xen/arch/arm/alternative.c
> index 8ee5a11..0ca97b9 100644
> --- a/xen/arch/arm/alternative.c
> +++ b/xen/arch/arm/alternative.c
> @@ -99,21 +99,21 @@ static int __apply_alternatives(const struct alt_region *region)
> const struct alt_instr *alt;
> const u32 *origptr, *replptr;
> u32 *writeptr, *writemap;
> - mfn_t text_mfn = _mfn(virt_to_mfn(_stext));
> - unsigned int text_order = get_order_from_bytes(_end - _start);
> + mfn_t xen_mfn = _mfn(virt_to_mfn(_start));
> + unsigned int xen_order = get_order_from_bytes(_end - _start);
>
> printk(XENLOG_INFO "alternatives: Patching kernel code\n");
>
> /*
> - * The text section is read-only. So re-map Xen to be able to patch
> - * the code.
> + * The text and inittext section are read-only. So re-map Xen to be
> + * able to patch the code.
> */
> - writemap = __vmap(&text_mfn, 1 << text_order, 1, 1, PAGE_HYPERVISOR,
> + writemap = __vmap(&xen_mfn, 1 << xen_order, 1, 1, PAGE_HYPERVISOR,
Do you want to make it 1U? (You pointed that out in my patchset so perhaps you
want it here?)
> VMAP_DEFAULT);
> if ( !writemap )
> {
> printk(XENLOG_ERR "alternatives: Unable to map the text section (size %u)\n",
> - 1 << text_order);
> + 1 << xen_order);
> return -ENOMEM;
> }
>
> --
> 1.9.1
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-09-07 14:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-07 12:50 [PATCH v2 0/2] xen/arm: alternative: Make it possible to patch outside of the hypervisor Julien Grall
2016-09-07 12:50 ` [PATCH v2 1/2] xen/arm: alternative: Clean-up __apply_alternatives Julien Grall
2016-09-07 14:13 ` Konrad Rzeszutek Wilk [this message]
2016-09-07 14:26 ` Julien Grall
2016-09-07 12:50 ` [PATCH v2 2/2] xen/arm: alternative: Make it possible to patch outside of the hypervisor Julien Grall
2016-09-07 14:14 ` Konrad Rzeszutek Wilk
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=20160907141330.GC9185@char.us.oracle.com \
--to=konrad.wilk@oracle.com \
--cc=julien.grall@arm.com \
--cc=sstabellini@kernel.org \
--cc=steve.capper@arm.com \
--cc=wei.chen@linaro.org \
--cc=xen-devel@lists.xen.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.