ARM: 7351/1: ftrace: remove useless memory checks
authorRabin Vincent <rabin@rab.in>
Wed, 29 Feb 2012 14:59:07 +0000 (15:59 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 24 Mar 2012 09:38:54 +0000 (09:38 +0000)
commitdc283d7037555aa6891188719be2f1b4af9535c9
treec63a6c8f31eb2f455d3ad203db12c23a565196c0
parent9141a003a491c7230d17b9c29677ce2be437b95c
ARM: 7351/1: ftrace: remove useless memory checks

Before replacing an instruction, the ftrace code determines what the old
instruction should be and verifies that that's what's really there in
memory before replacing it.  This is useful if for example a bug in
mcountrecord causes it to record wrong locations.

However, in cases where we replace call sites in entry-common.S, these
checks are not needed.  For these, we currently just memcpy() the memory
content and then "verify" it -- this is quite useless and can be
removed.

Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/kernel/ftrace.c