Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190671
b: refs/heads/master
c: 77543ce
h: refs/heads/master
i:
  190669: 391894b
  190667: 6364404
  190663: 216d2a9
  190655: 317f971
v: v3
  • Loading branch information
Michal Simek committed May 6, 2010
1 parent 6f612bc commit 969309b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de925d9d3b64390ef6363e16e9d6a84d7dd7cee1
refs/heads/master: 77543cebab7387eab7d482e90018a64d6f2ced1e
10 changes: 6 additions & 4 deletions trunk/arch/microblaze/kernel/cpu/mb.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,17 @@ static int show_cpuinfo(struct seq_file *m, void *v)

if (cpuinfo.use_icache)
count += seq_printf(m,
"Icache:\t\t%ukB\n",
cpuinfo.icache_size >> 10);
"Icache:\t\t%ukB\tline length:\t%dB\n",
cpuinfo.icache_size >> 10,
cpuinfo.icache_line_length);
else
count += seq_printf(m, "Icache:\t\tno\n");

if (cpuinfo.use_dcache) {
count += seq_printf(m,
"Dcache:\t\t%ukB\n",
cpuinfo.dcache_size >> 10);
"Dcache:\t\t%ukB\tline length:\t%dB\n",
cpuinfo.dcache_size >> 10,
cpuinfo.dcache_line_length);
if (cpuinfo.dcache_wb)
count += seq_printf(m, "\t\twrite-back\n");
else
Expand Down

0 comments on commit 969309b

Please sign in to comment.