Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759694AbZFIKTw (ORCPT ); Tue, 9 Jun 2009 06:19:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760404AbZFIKRx (ORCPT ); Tue, 9 Jun 2009 06:17:53 -0400 Received: from kroah.org ([198.145.64.141]:54470 "EHLO coco.kroah.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760395AbZFIKRw (ORCPT ); Tue, 9 Jun 2009 06:17:52 -0400 X-Mailbox-Line: From greg@blue.kroah.org Tue Jun 9 02:40:56 2009 Message-Id: <20090609094056.238393901@blue.kroah.org> User-Agent: quilt/0.48-1 Date: Tue, 09 Jun 2009 02:39:06 -0700 From: Greg KH To: linux-kernel@vger.kernel.org, stable@kernel.org Cc: Justin Forbes , Zwane Mwaikambo , "Theodore Ts'o" , Randy Dunlap , Dave Jones , Chuck Wolber , Chris Wedgwood , Michael Krufky , Chuck Ebbert , Domenico Andreoli , Willy Tarreau , Rodrigo Rubira Branco , Jake Edge , Eugene Teo , torvalds@linux-foundation.org, akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk, linux-mm@kvack.org, Matt Mackall , Christoph Lameter , Nick Piggin , Pekka Enberg , Greg Kroah-Hartman Subject: [patch 18/87] mm: SLUB fix reclaim_state References: <20090609093848.204935043@blue.kroah.org> Content-Disposition: inline; filename=mm-slub-fix-reclaim_state.patch In-Reply-To: <20090609094451.GA26439@kroah.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1343 Lines: 38 2.6.29-stable review patch. If anyone has any objections, please let us know. ------------------ From: Nick Piggin commit 1eb5ac6466d4be7b15b38ce3ab709600f1bc891f upstream. SLUB does not correctly account reclaim_state.reclaimed_slab, so it will break memory reclaim. Account it like SLAB does. Cc: linux-mm@kvack.org Cc: Matt Mackall Acked-by: Christoph Lameter Signed-off-by: Nick Piggin Signed-off-by: Pekka Enberg Signed-off-by: Greg Kroah-Hartman --- mm/slub.c | 3 +++ 1 file changed, 3 insertions(+) --- a/mm/slub.c +++ b/mm/slub.c @@ -9,6 +9,7 @@ */ #include +#include /* struct reclaim_state */ #include #include #include @@ -1175,6 +1176,8 @@ static void __free_slab(struct kmem_cach __ClearPageSlab(page); reset_page_mapcount(page); + if (current->reclaim_state) + current->reclaim_state->reclaimed_slab += pages; __free_pages(page, order); } -- 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/