linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] slob_free:free objects to their own list
@ 2010-07-10 10:05 Bob Liu
  2010-07-13 17:52 ` Pekka Enberg
  0 siblings, 1 reply; 7+ messages in thread
From: Bob Liu @ 2010-07-10 10:05 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, mpm, hannes, Bob Liu

slob has alloced smaller objects from their own list in reduce
overall external fragmentation and increase repeatability,
free to their own list also.

Signed-off-by: Bob Liu <lliubbo@gmail.com>
---
 mm/slob.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/mm/slob.c b/mm/slob.c
index 3f19a34..d582171 100644
--- a/mm/slob.c
+++ b/mm/slob.c
@@ -396,6 +396,7 @@ static void slob_free(void *block, int size)
 	slob_t *prev, *next, *b = (slob_t *)block;
 	slobidx_t units;
 	unsigned long flags;
+	struct list_head *slob_list;
 
 	if (unlikely(ZERO_OR_NULL_PTR(block)))
 		return;
@@ -424,7 +425,13 @@ static void slob_free(void *block, int size)
 		set_slob(b, units,
 			(void *)((unsigned long)(b +
 					SLOB_UNITS(PAGE_SIZE)) & PAGE_MASK));
-		set_slob_page_free(sp, &free_slob_small);
+		if (size < SLOB_BREAK1)
+			slob_list = &free_slob_small;
+		else if (size < SLOB_BREAK2)
+			slob_list = &free_slob_medium;
+		else
+			slob_list = &free_slob_large;
+		set_slob_page_free(sp, slob_list);
 		goto out;
 	}
 
-- 
1.5.6.3

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-07-16  8:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-10 10:05 [PATCH] slob_free:free objects to their own list Bob Liu
2010-07-13 17:52 ` Pekka Enberg
2010-07-13 17:53   ` Pekka Enberg
2010-07-13 21:53   ` Matt Mackall
2010-07-14  9:07     ` Pekka Enberg
2010-07-16  5:46       ` Bob Liu
2010-07-16  8:17         ` Pekka Enberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).