Skip to content

Commit

Permalink
[SPARC64]: Set associativity of kernel TSB descriptor correctly.
Browse files Browse the repository at this point in the history
It should be 1, not 0.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 20, 2006
1 parent c857e3f commit 3f19a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sparc64/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ static void __init sun4v_ktsb_init(void)
break;
};

ktsb_descr[0].assoc = 0;
ktsb_descr[0].assoc = 1;
ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
ktsb_descr[0].ctx_idx = 0;
ktsb_descr[0].tsb_base = ktsb_pa;
Expand Down

0 comments on commit 3f19a84

Please sign in to comment.