Commit 352d4657 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mattst88/alpha-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mattst88/alpha-2.6:
  alpha: fix compile errors in dma-mapping-common.h
  alpha: remove trailing spaces in messages
  alpha: use __ratelimit
parents 95c46afe 5286944d
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#define __ALPHA_MARVEL__H__ #define __ALPHA_MARVEL__H__
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <asm/compiler.h> #include <asm/compiler.h>
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#define MCPCIA_ONE_HAE_WINDOW 1 #define MCPCIA_ONE_HAE_WINDOW 1
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h>
#include <asm/compiler.h> #include <asm/compiler.h>
/* /*
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
#define __ALPHA_TITAN__H__ #define __ALPHA_TITAN__H__
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h>
#include <asm/compiler.h> #include <asm/compiler.h>
/* /*
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
#define __ALPHA_TSUNAMI__H__ #define __ALPHA_TSUNAMI__H__
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h>
#include <asm/compiler.h> #include <asm/compiler.h>
/* /*
......
...@@ -224,7 +224,7 @@ static void ...@@ -224,7 +224,7 @@ static void
dp264_device_interrupt(unsigned long vector) dp264_device_interrupt(unsigned long vector)
{ {
#if 1 #if 1
printk("dp264_device_interrupt: NOT IMPLEMENTED YET!! \n"); printk("dp264_device_interrupt: NOT IMPLEMENTED YET!!\n");
#else #else
unsigned long pld; unsigned long pld;
unsigned int i; unsigned int i;
......
...@@ -171,7 +171,7 @@ titan_set_irq_affinity(unsigned int irq, const struct cpumask *affinity) ...@@ -171,7 +171,7 @@ titan_set_irq_affinity(unsigned int irq, const struct cpumask *affinity)
static void static void
titan_device_interrupt(unsigned long vector) titan_device_interrupt(unsigned long vector)
{ {
printk("titan_device_interrupt: NOT IMPLEMENTED YET!! \n"); printk("titan_device_interrupt: NOT IMPLEMENTED YET!!\n");
} }
static void static void
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/kallsyms.h> #include <linux/kallsyms.h>
#include <linux/ratelimit.h>
#include <asm/gentrap.h> #include <asm/gentrap.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
...@@ -771,8 +772,7 @@ asmlinkage void ...@@ -771,8 +772,7 @@ asmlinkage void
do_entUnaUser(void __user * va, unsigned long opcode, do_entUnaUser(void __user * va, unsigned long opcode,
unsigned long reg, struct pt_regs *regs) unsigned long reg, struct pt_regs *regs)
{ {
static int cnt = 0; static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 5);
static unsigned long last_time;
unsigned long tmp1, tmp2, tmp3, tmp4; unsigned long tmp1, tmp2, tmp3, tmp4;
unsigned long fake_reg, *reg_addr = &fake_reg; unsigned long fake_reg, *reg_addr = &fake_reg;
...@@ -783,15 +783,11 @@ do_entUnaUser(void __user * va, unsigned long opcode, ...@@ -783,15 +783,11 @@ do_entUnaUser(void __user * va, unsigned long opcode,
with the unaliged access. */ with the unaliged access. */
if (!test_thread_flag (TIF_UAC_NOPRINT)) { if (!test_thread_flag (TIF_UAC_NOPRINT)) {
if (cnt >= 5 && time_after(jiffies, last_time + 5 * HZ)) { if (__ratelimit(&ratelimit)) {
cnt = 0;
}
if (++cnt < 5) {
printk("%s(%d): unaligned trap at %016lx: %p %lx %ld\n", printk("%s(%d): unaligned trap at %016lx: %p %lx %ld\n",
current->comm, task_pid_nr(current), current->comm, task_pid_nr(current),
regs->pc - 4, va, opcode, reg); regs->pc - 4, va, opcode, reg);
} }
last_time = jiffies;
} }
if (test_thread_flag (TIF_UAC_SIGBUS)) if (test_thread_flag (TIF_UAC_SIGBUS))
goto give_sigbus; goto give_sigbus;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment