From 32f69686602a6136bbd5afc38160a85eb2ad9ad7 Mon Sep 17 00:00:00 2001 From: Phil Carmody Date: Fri, 10 Sep 2010 13:47:59 +0300 Subject: [PATCH] --- yaml --- r: 218929 b: refs/heads/master c: b1b1d4a6f244eb9513f006a188f7ed30d5014de5 h: refs/heads/master i: 218927: d6e61487dbc39ca5e69ca9c2364ca75602f0d877 v: v3 --- [refs] | 2 +- trunk/arch/parisc/kernel/unwind.c | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index b197ebaa9e8a..8cbbcdc75c34 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f720817700de48a57f54535a5dd9783cca2d2d6b +refs/heads/master: b1b1d4a6f244eb9513f006a188f7ed30d5014de5 diff --git a/trunk/arch/parisc/kernel/unwind.c b/trunk/arch/parisc/kernel/unwind.c index d58eac1a8288..76ed62ed785b 100644 --- a/trunk/arch/parisc/kernel/unwind.c +++ b/trunk/arch/parisc/kernel/unwind.c @@ -80,8 +80,11 @@ find_unwind_entry(unsigned long addr) if (addr >= table->start && addr <= table->end) e = find_unwind_entry_in_table(table, addr); - if (e) + if (e) { + /* Move-to-front to exploit common traces */ + list_move(&table->list, &unwind_tables); break; + } } return e;