Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755847AbbLECgv (ORCPT ); Fri, 4 Dec 2015 21:36:51 -0500 Received: from m50-132.163.com ([123.125.50.132]:35092 "EHLO m50-132.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753553AbbLECgt (ORCPT ); Fri, 4 Dec 2015 21:36:49 -0500 Date: Sat, 5 Dec 2015 10:36:27 +0800 From: Geliang Tang To: Christoph Lameter Cc: Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Geliang Tang Subject: Re: [PATCH v2] mm/slab.c: use list_{empty_careful,last_entry} in drain_freelist Message-ID: <20151205023627.GA9812@bogon> References: <3ea815dc52bf1a2bb5e324d7398315597900be84.1449151365.git.geliangtang@163.com> <20151204134302.GA6388@bogon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-CM-TRANSID: DNGowEDJfnerTWJW5klGAQ--.8892S3 X-Coremail-Antispam: 1Uf129KBjvJXoW7AFWUtFyDKrWrWr18tFWUJwb_yoW8Zw1UpF yF9a48tr4kZrW8Ar4v9wnFkF1vvr4UKry0grW0krn7CF90vrZIgr43C3y5Kr4rAw48Wr4q qFWDGFyxCr4UC37anT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x0zR6c_hUUUUU= X-Originating-IP: [116.77.147.85] X-CM-SenderInfo: 5jhoxtpqjwt0rj6rljoofrz/1tbivw3HmVWBOxMAVwAAsH Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2651 Lines: 79 On Fri, Dec 04, 2015 at 10:16:38AM -0600, Christoph Lameter wrote: > On Fri, 4 Dec 2015, Geliang Tang wrote: > > > On Thu, Dec 03, 2015 at 08:53:21AM -0600, Christoph Lameter wrote: > > > On Thu, 3 Dec 2015, Geliang Tang wrote: > > > > > > > while (nr_freed < tofree && !list_empty(&n->slabs_free)) { > > > > > > > > spin_lock_irq(&n->list_lock); > > > > - p = n->slabs_free.prev; > > > > - if (p == &n->slabs_free) { > > > > + if (list_empty_careful(&n->slabs_free)) { > > > > > > We have taken the lock. Why do we need to be "careful"? list_empty() > > > shoudl work right? > > > > Yes. list_empty() is OK. > > > > > > > > > spin_unlock_irq(&n->list_lock); > > > > goto out; > > > > } > > > > > > > > - page = list_entry(p, struct page, lru); > > > > + page = list_last_entry(&n->slabs_free, struct page, lru); > > > > > > last??? > > > > The original code delete the page from the tail of slabs_free list. > > Maybe make the code clearer by using another method to get the page > pointer? > > > > > > > Would the the other new function that returns NULL on the empty list or > > > the pointer not be useful here too and save some code? > > > > Sorry, I don't really understand what do you mean. Can you please specify > > it a little bit? > > I take that back. list_empty is the best choice here. If we use list_empty(), there will be two list_empty() in the code: while (nr_freed < tofree && !list_empty(&n->slabs_free)) { spin_lock_irq(&n->list_lock); if (list_empty(&n->slabs_free)) { spin_unlock_irq(&n->list_lock); goto out; } page = list_last_entry(&n->slabs_free, struct page, lru); list_del(&page->lru); spin_unlock_irq(&n->list_lock); } Or can we drop the first list_empty() like this? It will function the same as the above code. while (nr_freed < tofree) { spin_lock_irq(&n->list_lock); if (list_empty(&n->slabs_free)) { spin_unlock_irq(&n->list_lock); goto out; } page = list_last_entry(&n->slabs_free, struct page, lru); list_del(&page->lru); spin_unlock_irq(&n->list_lock); } Please let me know which one is better? Thanks. - Geliang -- 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/