Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754519AbbFRBdu (ORCPT ); Wed, 17 Jun 2015 21:33:50 -0400 Received: from cantor2.suse.de ([195.135.220.15]:35063 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750807AbbFRBdo (ORCPT ); Wed, 17 Jun 2015 21:33:44 -0400 Message-ID: <1434591216.1903.44.camel@stgolabs.net> Subject: Re: [PATCH] mm: use srcu for shrinkers From: Davidlohr Bueso To: Michal Hocko Cc: Andrew Morton , Johannes Weiner , Mel Gorman , linux-mm@kvack.org, linux-kernel@vger.kernel.org Date: Wed, 17 Jun 2015 18:33:36 -0700 In-Reply-To: <20150617074751.GC25056@dhcp22.suse.cz> References: <1434398602.1903.15.camel@stgolabs.net> <20150617074751.GC25056@dhcp22.suse.cz> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.11 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1349 Lines: 28 On Wed, 2015-06-17 at 09:47 +0200, Michal Hocko wrote: > On the other hand using srcu is a neat idea. Shrinkers only need the > existence guarantee when racing with unregister. Register even shouldn't > be that interesting because such a shrinker wouldn't have much to > shrink anyway so we can safely miss it AFAIU. With the srcu read lock > we can finally get rid of the try_lock. I do not think you need an > ugly spin_is_locked as the replacement though. We have the existence > guarantee and that should be sufficient. So the reason for the spin_is_locked check was that I was concerned about new reader(s) that come in while doing the registry. Currently this is forbidden by the trylock and fake-ish retry. But yes, perhaps I was being over safe and we shouldn't be blockling the reclaim simply because a shrinker is registering. And it would be cleaner to get rid of the whole retry idea and just use rcu guarantees. This is probably a little late in the game to try to push for 4.2, so I'll send a v2 with any other updates that might come up once the merge window closes. Thanks, Davidlohr -- 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/