diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-06-30 15:10:06 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-06-30 15:10:06 +0900 |
commit | 9ab3a15d95809a5d4feecda58b3749c53590e1b2 (patch) | |
tree | d355ffe46663b8fe52548a2109509ec206875da1 /arch/sh/mm | |
parent | 7b61ca5d94baf2c31971871fa875750f90fce098 (diff) | |
download | linux-3.10-9ab3a15d95809a5d4feecda58b3749c53590e1b2.tar.gz linux-3.10-9ab3a15d95809a5d4feecda58b3749c53590e1b2.tar.bz2 linux-3.10-9ab3a15d95809a5d4feecda58b3749c53590e1b2.zip |
sh: use printk_ratelimited instead of printk_ratelimit
Follows the powerpc change, for much the same rationale.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm')
-rw-r--r-- | arch/sh/mm/alignment.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/sh/mm/alignment.c b/arch/sh/mm/alignment.c index b2595b8548e..620fa7ff9ee 100644 --- a/arch/sh/mm/alignment.c +++ b/arch/sh/mm/alignment.c @@ -13,6 +13,7 @@ #include <linux/seq_file.h> #include <linux/proc_fs.h> #include <linux/uaccess.h> +#include <linux/ratelimit.h> #include <asm/alignment.h> #include <asm/processor.h> @@ -95,13 +96,13 @@ int set_unalign_ctl(struct task_struct *tsk, unsigned int val) void unaligned_fixups_notify(struct task_struct *tsk, insn_size_t insn, struct pt_regs *regs) { - if (user_mode(regs) && (se_usermode & UM_WARN) && printk_ratelimit()) - pr_notice("Fixing up unaligned userspace access " + if (user_mode(regs) && (se_usermode & UM_WARN)) + pr_notice_ratelimited("Fixing up unaligned userspace access " "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", tsk->comm, task_pid_nr(tsk), (void *)instruction_pointer(regs), insn); - else if (se_kernmode_warn && printk_ratelimit()) - pr_notice("Fixing up unaligned kernel access " + else if (se_kernmode_warn) + pr_notice_ratelimited("Fixing up unaligned kernel access " "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", tsk->comm, task_pid_nr(tsk), (void *)instruction_pointer(regs), insn); |