diff options
author | Cyril Bur <cyrilbur@gmail.com> | 2018-02-05 06:17:16 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-07-24 14:03:22 +0200 |
commit | a596a7e91710d26fd862e3b7031c4012974583f2 (patch) | |
tree | e0b23f9caa8ae201d74ef71c234bcee7ad5c4fa7 /arch/powerpc/kernel/tm.S | |
parent | selftests/powerpc: Update memcmp_64 selftest for VMX implementation (diff) | |
download | linux-a596a7e91710d26fd862e3b7031c4012974583f2.tar.xz linux-a596a7e91710d26fd862e3b7031c4012974583f2.zip |
powerpc/tm: Update function prototype comment
In commit eb5c3f1c8647 ("powerpc: Always save/restore checkpointed regs
during treclaim/trecheckpoint") __tm_recheckpoint was modified to no
longer take the second parameter 'unsigned long orig_msr' as part of a
TM rewrite to simplify the reclaiming/recheckpointing process.
There is a comment in the asm file where the function is delcared which
has an incorrect prototype with the 'orig_msr' parameter.
This patch corrects the comment.
Signed-off-by: Cyril Bur <cyrilbur@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/tm.S')
-rw-r--r-- | arch/powerpc/kernel/tm.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/tm.S b/arch/powerpc/kernel/tm.S index ff12f47a96b6..6bb6f5123dcf 100644 --- a/arch/powerpc/kernel/tm.S +++ b/arch/powerpc/kernel/tm.S @@ -312,8 +312,8 @@ _GLOBAL(tm_reclaim) blr - /* void __tm_recheckpoint(struct thread_struct *thread, - * unsigned long orig_msr) + /* + * void __tm_recheckpoint(struct thread_struct *thread) * - Restore the checkpointed register state saved by tm_reclaim * when we switch_to a process. * |