diff options
Diffstat (limited to 'arch/mips/kernel/ftrace.c')
| -rw-r--r-- | arch/mips/kernel/ftrace.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/arch/mips/kernel/ftrace.c b/arch/mips/kernel/ftrace.c index e9e64e0ff7aa..37aa7677e76d 100644 --- a/arch/mips/kernel/ftrace.c +++ b/arch/mips/kernel/ftrace.c | |||
| @@ -62,14 +62,26 @@ int ftrace_make_nop(struct module *mod, | |||
| 62 | return -EFAULT; | 62 | return -EFAULT; |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | #if defined(KBUILD_MCOUNT_RA_ADDRESS) && defined(CONFIG_32BIT) | ||
| 66 | /* lui v1, hi_16bit_of_mcount --> b 1f (0x10000005) | ||
| 67 | * addiu v1, v1, low_16bit_of_mcount | ||
| 68 | * move at, ra | ||
| 69 | * move $12, ra_address | ||
| 70 | * jalr v1 | ||
| 71 | * sub sp, sp, 8 | ||
| 72 | * 1: offset = 5 instructions | ||
| 73 | */ | ||
| 74 | new = 0x10000005; | ||
| 75 | #else | ||
| 65 | /* lui v1, hi_16bit_of_mcount --> b 1f (0x10000004) | 76 | /* lui v1, hi_16bit_of_mcount --> b 1f (0x10000004) |
| 66 | * addiu v1, v1, low_16bit_of_mcount | 77 | * addiu v1, v1, low_16bit_of_mcount |
| 67 | * move at, ra | 78 | * move at, ra |
| 68 | * jalr v1 | 79 | * jalr v1 |
| 69 | * nop | 80 | * nop | move $12, ra_address | sub sp, sp, 8 |
| 70 | * 1f: (ip + 12) | 81 | * 1: offset = 4 instructions |
| 71 | */ | 82 | */ |
| 72 | new = 0x10000004; | 83 | new = 0x10000004; |
| 84 | #endif | ||
| 73 | } else { | 85 | } else { |
| 74 | /* record/calculate it for ftrace_make_call */ | 86 | /* record/calculate it for ftrace_make_call */ |
| 75 | if (jal_mcount == 0) { | 87 | if (jal_mcount == 0) { |
