diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-08-06 19:09:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 21:01:25 -0400 |
commit | 61b3d6c48f059bb054b0019088736dab6c2ac0ec (patch) | |
tree | 0d312d70673c63c8e02fcdd7c690e0e67e57922f /lib | |
parent | 694123031d12458a343492528fa40113e5ec843e (diff) |
lib: list_sort.c: Limit number of unused cmp callbacks
The helper merge_and_restore_back_links() makes sure to call the
caller's cmp function during the final ->prev pointer fixup, so that the
cmp function may call cond_resched(). However, if the cmp function does
not call cond_resched() at all, this is entirely redundant. If it does,
doing at least two function calls for every two pointer assignments is a
bit excessive. This patch limits the calls to once for every 256
iterations.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Cc: Don Mullis <don.mullis@gmail.com>
Cc: Dave Chinner <david@fromorbit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/list_sort.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/list_sort.c b/lib/list_sort.c index a34c78c30d56..6b9fdaf1d32e 100644 --- a/lib/list_sort.c +++ b/lib/list_sort.c | |||
@@ -47,6 +47,7 @@ static void merge_and_restore_back_links(void *priv, | |||
47 | struct list_head *a, struct list_head *b) | 47 | struct list_head *a, struct list_head *b) |
48 | { | 48 | { |
49 | struct list_head *tail = head; | 49 | struct list_head *tail = head; |
50 | u8 count = 0; | ||
50 | 51 | ||
51 | while (a && b) { | 52 | while (a && b) { |
52 | /* if equal, take 'a' -- important for sort stability */ | 53 | /* if equal, take 'a' -- important for sort stability */ |
@@ -70,7 +71,8 @@ static void merge_and_restore_back_links(void *priv, | |||
70 | * element comparison is needed, so the client's cmp() | 71 | * element comparison is needed, so the client's cmp() |
71 | * routine can invoke cond_resched() periodically. | 72 | * routine can invoke cond_resched() periodically. |
72 | */ | 73 | */ |
73 | (*cmp)(priv, tail->next, tail->next); | 74 | if (unlikely(!(++count))) |
75 | (*cmp)(priv, tail->next, tail->next); | ||
74 | 76 | ||
75 | tail->next->prev = tail; | 77 | tail->next->prev = tail; |
76 | tail = tail->next; | 78 | tail = tail->next; |