Skip to content

Commit

Permalink
[MIPS] Add noulri kernel argument to disable "rdhwr $29" usermode sup…
Browse files Browse the repository at this point in the history
…port.

Signed-off-by: Chris Dearman <chris@mips.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Chris Dearman authored and Ralf Baechle committed Apr 28, 2008
1 parent 3513369 commit bdc94eb
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion arch/mips/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -1306,6 +1306,17 @@ int cp0_compare_irq;
int cp0_perfcount_irq;
EXPORT_SYMBOL_GPL(cp0_perfcount_irq);

static int __cpuinitdata noulri;

static int __init ulri_disable(char *s)
{
pr_info("Disabling ulri\n");
noulri = 1;

return 1;
}
__setup("noulri", ulri_disable);

void __cpuinit per_cpu_trap_init(void)
{
unsigned int cpu = smp_processor_id();
Expand Down Expand Up @@ -1346,7 +1357,7 @@ void __cpuinit per_cpu_trap_init(void)
if (cpu_has_mips_r2) {
unsigned int enable = 0x0000000f;

if (cpu_has_userlocal)
if (!noulri && cpu_has_userlocal)
enable |= (1 << 29);

write_c0_hwrena(enable);
Expand Down

0 comments on commit bdc94eb

Please sign in to comment.