Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1283070 > unrolled thread

[PATCH] mm/slab.c: add a helper function get_first_slab

Started byGeliang Tang <geliangtang@163.com>
First post2015-12-03 15:20 +0100
Last post2015-12-03 22:10 +0100
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] mm/slab.c: add a helper function get_first_slab Geliang Tang <geliangtang@163.com> - 2015-12-03 15:20 +0100
    Re: [PATCH] mm/slab.c: add a helper function get_first_slab Christoph Lameter <cl@linux.com> - 2015-12-03 15:50 +0100
    Re: [PATCH] mm/slab.c: add a helper function get_first_slab David Rientjes <rientjes@google.com> - 2015-12-03 22:10 +0100

#1283070 — [PATCH] mm/slab.c: add a helper function get_first_slab

FromGeliang Tang <geliangtang@163.com>
Date2015-12-03 15:20 +0100
Subject[PATCH] mm/slab.c: add a helper function get_first_slab
Message-ID<qBCTN-6fn-17@gated-at.bofh.it>
Add a new helper function get_first_slab() that get the first slab
from a kmem_cache_node.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 mm/slab.c | 39 +++++++++++++++++++++------------------
 1 file changed, 21 insertions(+), 18 deletions(-)

diff --git a/mm/slab.c b/mm/slab.c
index 925921e..2463b57 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -2754,6 +2754,21 @@ static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
 #define cache_free_debugcheck(x,objp,z) (objp)
 #endif
 
+static struct page *get_first_slab(struct kmem_cache_node *n)
+{
+	struct page *page;
+
+	page = list_first_entry_or_null(&n->slabs_partial,
+			struct page, lru);
+	if (!page) {
+		n->free_touched = 1;
+		page = list_first_entry_or_null(&n->slabs_free,
+				struct page, lru);
+	}
+
+	return page;
+}
+
 static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
 							bool force_refill)
 {
@@ -2791,15 +2806,9 @@ retry:
 	while (batchcount > 0) {
 		struct page *page;
 		/* Get slab alloc is to come from. */
-		page = list_first_entry_or_null(&n->slabs_partial,
-				struct page, lru);
-		if (!page) {
-			n->free_touched = 1;
-			page = list_first_entry_or_null(&n->slabs_free,
-					struct page, lru);
-			if (!page)
-				goto must_grow;
-		}
+		page = get_first_slab(n);
+		if (!page)
+			goto must_grow;
 
 		check_spinlock_acquired(cachep);
 
@@ -3095,15 +3104,9 @@ static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
 retry:
 	check_irq_off();
 	spin_lock(&n->list_lock);
-	page = list_first_entry_or_null(&n->slabs_partial,
-			struct page, lru);
-	if (!page) {
-		n->free_touched = 1;
-		page = list_first_entry_or_null(&n->slabs_free,
-				struct page, lru);
-		if (!page)
-			goto must_grow;
-	}
+	page = get_first_slab(n);
+	if (!page)
+		goto must_grow;
 
 	check_spinlock_acquired_node(cachep, nodeid);
 
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1283094

FromChristoph Lameter <cl@linux.com>
Date2015-12-03 15:50 +0100
Message-ID<qBDmN-6pd-15@gated-at.bofh.it>
In reply to#1283070
On Thu, 3 Dec 2015, Geliang Tang wrote:

> Add a new helper function get_first_slab() that get the first slab
> from a kmem_cache_node.

Acked-by: Christoph Lameter <cl@linux.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1283363

FromDavid Rientjes <rientjes@google.com>
Date2015-12-03 22:10 +0100
Message-ID<qBJiy-1Vy-21@gated-at.bofh.it>
In reply to#1283070
On Thu, 3 Dec 2015, Geliang Tang wrote:

> Add a new helper function get_first_slab() that get the first slab
> from a kmem_cache_node.
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Acked-by: David Rientjes <rientjes@google.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web