public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jamie Iles <jamie.iles@picochip.com>
To: Will Deacon <will.deacon@arm.com>
Cc: linux-kernel@vger.kernel.org,
	Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Jamie Iles <jamie.iles@picochip.com>, Ingo Molnar <mingo@elte.hu>
Subject: Re: [PATCH] ARM: perf: modify kuser rmb() call to compile for Thumb-2
Date: Wed, 3 Mar 2010 11:56:31 +0000	[thread overview]
Message-ID: <20100303115631.GC3928@wear.picochip.com> (raw)
In-Reply-To: <1267616878-2154-1-git-send-email-will.deacon@arm.com>

On Wed, Mar 03, 2010 at 11:47:58AM +0000, Will Deacon wrote:
> The Thumb-2 instruction set does not provide an encoding
> for sub pc, r0, #95 as present in the rmb() definition used
> by perf. This results in compilation failure when using a
> compiler targetting an instruction set other than ARM.
> 
> This patch redefines rmb() for ARM by casting the address
> of the kuser helper to a function pointer, therefore getting
> the compiler to take care of making the call.
> 
> Patch taken against tip/master.
> 
> Signed-off-by: Will Deacon <will.deacon@arm.com>
> Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>
> Cc: Jamie Iles <jamie.iles@picochip.com>
> Cc: Ingo Molnar <mingo@elte.hu>
> ---
>  tools/perf/perf.h |    4 +---
>  1 files changed, 1 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/perf/perf.h b/tools/perf/perf.h
> index 75f941b..6fb379b 100644
> --- a/tools/perf/perf.h
> +++ b/tools/perf/perf.h
> @@ -65,9 +65,7 @@
>   * Use the __kuser_memory_barrier helper in the CPU helper page. See
>   * arch/arm/kernel/entry-armv.S in the kernel source for details.
>   */
> -#define rmb()		asm volatile("mov r0, #0xffff0fff; mov lr, pc;" \
> -				     "sub pc, r0, #95" ::: "r0", "lr", "cc", \
> -				     "memory")
> +#define rmb()		((void(*)(void))0xffff0fa0)()
This will take care of doing the CPU barrier but don't we still need a
compiler memory barrier? I guess you could do:

#define rmb() ({ \
		((void(*)(void))0xffff0fa0)(); \
		asm volatile("" ::: "memory"); \
	})

Jamie

  reply	other threads:[~2010-03-03 11:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-03 11:47 [PATCH] ARM: perf: modify kuser rmb() call to compile for Thumb-2 Will Deacon
2010-03-03 11:56 ` Jamie Iles [this message]
2010-03-04 16:33 ` [tip:perf/pebs] perf, ARM: Modify " tip-bot for Will Deacon

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=20100303115631.GC3928@wear.picochip.com \
    --to=jamie.iles@picochip.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mingo@elte.hu \
    --cc=will.deacon@arm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox