diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2005-06-13 16:09:32 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:21 -0400 |
commit | 9678e28b1ab931c35567cb15927b8c5e474934c3 (patch) | |
tree | e017e815b87835f1111e9c1f7bf65beb259c496a /arch/mips/mm/tlbex.c | |
parent | 15b6e09b66b1e534377dbd6c4d6a5d097062315c (diff) |
Only dump instructions actually emitted.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/tlbex.c')
-rw-r--r-- | arch/mips/mm/tlbex.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index cdd02d93a15c..2e90c1d2d053 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -1239,7 +1239,7 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1239 | { | 1239 | { |
1240 | int i; | 1240 | int i; |
1241 | 1241 | ||
1242 | for (i = 0; i < 64; i++) | 1242 | for (i = 0; i < final_len; i++) |
1243 | printk("%08x\n", final_handler[i]); | 1243 | printk("%08x\n", final_handler[i]); |
1244 | } | 1244 | } |
1245 | #endif | 1245 | #endif |
@@ -1506,7 +1506,7 @@ static void __init build_r3000_tlb_load_handler(void) | |||
1506 | { | 1506 | { |
1507 | int i; | 1507 | int i; |
1508 | 1508 | ||
1509 | for (i = 0; i < FASTPATH_SIZE; i++) | 1509 | for (i = 0; i < (p - handle_tlbl); i++) |
1510 | printk("%08x\n", handle_tlbl[i]); | 1510 | printk("%08x\n", handle_tlbl[i]); |
1511 | } | 1511 | } |
1512 | #endif | 1512 | #endif |
@@ -1547,7 +1547,7 @@ static void __init build_r3000_tlb_store_handler(void) | |||
1547 | { | 1547 | { |
1548 | int i; | 1548 | int i; |
1549 | 1549 | ||
1550 | for (i = 0; i < FASTPATH_SIZE; i++) | 1550 | for (i = 0; i < (p - handle_tlbs); i++) |
1551 | printk("%08x\n", handle_tlbs[i]); | 1551 | printk("%08x\n", handle_tlbs[i]); |
1552 | } | 1552 | } |
1553 | #endif | 1553 | #endif |
@@ -1588,7 +1588,7 @@ static void __init build_r3000_tlb_modify_handler(void) | |||
1588 | { | 1588 | { |
1589 | int i; | 1589 | int i; |
1590 | 1590 | ||
1591 | for (i = 0; i < FASTPATH_SIZE; i++) | 1591 | for (i = 0; i < (p - handle_tlbm); i++) |
1592 | printk("%08x\n", handle_tlbm[i]); | 1592 | printk("%08x\n", handle_tlbm[i]); |
1593 | } | 1593 | } |
1594 | #endif | 1594 | #endif |
@@ -1680,7 +1680,7 @@ static void __init build_r4000_tlb_load_handler(void) | |||
1680 | { | 1680 | { |
1681 | int i; | 1681 | int i; |
1682 | 1682 | ||
1683 | for (i = 0; i < FASTPATH_SIZE; i++) | 1683 | for (i = 0; i < (p - handle_tlbl); i++) |
1684 | printk("%08x\n", handle_tlbl[i]); | 1684 | printk("%08x\n", handle_tlbl[i]); |
1685 | } | 1685 | } |
1686 | #endif | 1686 | #endif |
@@ -1719,7 +1719,7 @@ static void __init build_r4000_tlb_store_handler(void) | |||
1719 | { | 1719 | { |
1720 | int i; | 1720 | int i; |
1721 | 1721 | ||
1722 | for (i = 0; i < FASTPATH_SIZE; i++) | 1722 | for (i = 0; i < (p - handle_tlbs); i++) |
1723 | printk("%08x\n", handle_tlbs[i]); | 1723 | printk("%08x\n", handle_tlbs[i]); |
1724 | } | 1724 | } |
1725 | #endif | 1725 | #endif |
@@ -1759,7 +1759,7 @@ static void __init build_r4000_tlb_modify_handler(void) | |||
1759 | { | 1759 | { |
1760 | int i; | 1760 | int i; |
1761 | 1761 | ||
1762 | for (i = 0; i < FASTPATH_SIZE; i++) | 1762 | for (i = 0; i < (p - handle_tlbm); i++) |
1763 | printk("%08x\n", handle_tlbm[i]); | 1763 | printk("%08x\n", handle_tlbm[i]); |
1764 | } | 1764 | } |
1765 | #endif | 1765 | #endif |