From: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
To: Sasha Levin <sasha.levin@oracle.com>
Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
rostedt@goodmis.org, fweisbec@gmail.com, rusty@rustcorp.com.au,
ananth@in.ibm.com, anil.s.keshavamurthy@intel.com,
jbaron@redhat.com, x86@kernel.org, linux-kernel@vger.kernel.org,
"yrl.pp-manager.tt@hitachi.com" <yrl.pp-manager.tt@hitachi.com>
Subject: Re: [PATCH 4/5] alternatives: constify alternatives_text_reserved
Date: Mon, 21 Jan 2013 20:38:53 +0900 [thread overview]
Message-ID: <50FD28CD.7070108@hitachi.com> (raw)
In-Reply-To: <1357772960-4436-4-git-send-email-sasha.levin@oracle.com>
(2013/01/10 8:09), Sasha Levin wrote:
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
This looks good for me. And, please add a comment to explain
what this patch is for.
Thank you,
> ---
> arch/x86/include/asm/alternative.h | 4 ++--
> arch/x86/kernel/alternative.c | 6 +++---
> 2 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/arch/x86/include/asm/alternative.h b/arch/x86/include/asm/alternative.h
> index 58ed6d9..4d0d2fb 100644
> --- a/arch/x86/include/asm/alternative.h
> +++ b/arch/x86/include/asm/alternative.h
> @@ -61,7 +61,7 @@ extern void alternatives_smp_module_add(struct module *mod, char *name,
> void *text, void *text_end);
> extern void alternatives_smp_module_del(struct module *mod);
> extern void alternatives_enable_smp(void);
> -extern int alternatives_text_reserved(void *start, void *end);
> +extern int alternatives_text_reserved(const void *start, const void *end);
> extern bool skip_smp_alternatives;
> #else
> static inline void alternatives_smp_module_add(struct module *mod, char *name,
> @@ -69,7 +69,7 @@ static inline void alternatives_smp_module_add(struct module *mod, char *name,
> void *text, void *text_end) {}
> static inline void alternatives_smp_module_del(struct module *mod) {}
> static inline void alternatives_enable_smp(void) {}
> -static inline int alternatives_text_reserved(void *start, void *end)
> +static inline int alternatives_text_reserved(const void *start, const void *end)
> {
> return 0;
> }
> diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c
> index ef5ccca..0994e41 100644
> --- a/arch/x86/kernel/alternative.c
> +++ b/arch/x86/kernel/alternative.c
> @@ -431,12 +431,12 @@ void alternatives_enable_smp(void)
> }
>
> /* Return 1 if the address range is reserved for smp-alternatives */
> -int alternatives_text_reserved(void *start, void *end)
> +int alternatives_text_reserved(const void *start, const void *end)
> {
> struct smp_alt_module *mod;
> const s32 *poff;
> - u8 *text_start = start;
> - u8 *text_end = end;
> + const u8 *text_start = start;
> + const u8 *text_end = end;
>
> list_for_each_entry(mod, &smp_alt_modules, next) {
> if (mod->text > text_end || mod->text_end < text_start)
>
--
Masami HIRAMATSU
IT Management Research Dept. Linux Technology Center
Hitachi, Ltd., Yokohama Research Laboratory
E-mail: masami.hiramatsu.pt@hitachi.com
next prev parent reply other threads:[~2013-01-21 11:39 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-09 23:09 [PATCH 1/5] module: constify within_module_* Sasha Levin
2013-01-09 23:09 ` [PATCH 2/5] jump label: constify lookup functions Sasha Levin
2013-01-15 20:46 ` Sasha Levin
2013-01-15 23:19 ` Steven Rostedt
2013-01-18 21:25 ` Steven Rostedt
2013-01-21 6:51 ` Rusty Russell
2013-01-25 4:15 ` Sasha Levin
2013-01-25 10:16 ` Borislav Petkov
2013-01-25 13:03 ` Steven Rostedt
2013-01-18 21:25 ` Steven Rostedt
2013-01-09 23:09 ` [PATCH 3/5] kprobes: constify check_kprobe_address_safe and friends Sasha Levin
2013-01-21 11:49 ` Masami Hiramatsu
2013-01-25 4:09 ` Sasha Levin
2013-01-29 11:45 ` Masami Hiramatsu
2013-01-09 23:09 ` [PATCH 4/5] alternatives: constify alternatives_text_reserved Sasha Levin
2013-01-21 11:38 ` Masami Hiramatsu [this message]
2013-01-09 23:09 ` [PATCH 5/5] ftrace: constify ftrace_text_reserved Sasha Levin
2013-01-10 9:02 ` [PATCH 1/5] module: constify within_module_* Rusty Russell
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=50FD28CD.7070108@hitachi.com \
--to=masami.hiramatsu.pt@hitachi.com \
--cc=ananth@in.ibm.com \
--cc=anil.s.keshavamurthy@intel.com \
--cc=fweisbec@gmail.com \
--cc=hpa@zytor.com \
--cc=jbaron@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=rostedt@goodmis.org \
--cc=rusty@rustcorp.com.au \
--cc=sasha.levin@oracle.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=yrl.pp-manager.tt@hitachi.com \
/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.