Skip to content

Commit

Permalink
sparc: use __ratelimit
Browse files Browse the repository at this point in the history
Replace open-coded rate limiting logic with __ratelimit().

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Akinobu Mita authored and David S. Miller committed Feb 28, 2010
1 parent 275143e commit c7ec2b5
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions arch/sparc/kernel/unaligned_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <linux/smp.h>
#include <linux/bitops.h>
#include <linux/perf_event.h>
#include <linux/ratelimit.h>
#include <asm/fpumacro.h>

enum direction {
Expand Down Expand Up @@ -274,13 +275,9 @@ static void kernel_mna_trap_fault(int fixup_tstate_asi)

static void log_unaligned(struct pt_regs *regs)
{
static unsigned long count, last_time;
static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 5);

if (time_after(jiffies, last_time + 5 * HZ))
count = 0;
if (count < 5) {
last_time = jiffies;
count++;
if (__ratelimit(&ratelimit)) {
printk("Kernel unaligned access at TPC[%lx] %pS\n",
regs->tpc, (void *) regs->tpc);
}
Expand Down

0 comments on commit c7ec2b5

Please sign in to comment.