Commit a263672424e591067e42e1d8371e56927fe73af8

Authored by Jeff Dike
Committed by Linus Torvalds
1 parent dc764e5087

uml: remove debugging remnants

I accidentally left the remnants of some debugging in an earlier patch.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 0 additions and 3 deletions Side-by-side Diff

arch/um/kernel/tlb.c
... ... @@ -235,9 +235,7 @@
235 235 unsigned long addr = start_addr, next;
236 236 int ret = 0, last_op = ARRAY_SIZE(ops) - 1, op_index = -1;
237 237 void *flush = NULL;
238   - unsigned long long start_time, end_time;
239 238  
240   - start_time = os_nsecs();
241 239 ops[0].type = NONE;
242 240 pgd = pgd_offset(mm, addr);
243 241 do {
... ... @@ -254,7 +252,6 @@
254 252 &op_index, force, mmu, &flush,
255 253 do_ops);
256 254 } while (pgd++, addr = next, ((addr != end_addr) && !ret));
257   - end_time = os_nsecs();
258 255 log_info("total flush time - %Ld nsecs\n", end_time - start_time);
259 256  
260 257 if(!ret)