From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751394AbdA0VRn (ORCPT ); Fri, 27 Jan 2017 16:17:43 -0500 Received: from fallback2.mail.ru ([94.100.179.22]:53768 "EHLO fallback2.mail.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751444AbdA0VRd (ORCPT ); Fri, 27 Jan 2017 16:17:33 -0500 Date: Fri, 27 Jan 2017 21:00:12 +0300 From: Vladimir Davydov To: Tejun Heo Cc: cl@linux.com, penberg@kernel.org, rientjes@google.com, iamjoonsoo.kim@lge.com, akpm@linux-foundation.org, jsvana@fb.com, hannes@cmpxchg.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, cgroups@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH v2 02/10] slub: separate out sysfs_slab_release() from sysfs_slab_remove() Message-ID: <20170127180012.GA4332@esperanza> References: <20170117235411.9408-1-tj@kernel.org> <20170117235411.9408-3-tj@kernel.org> <20170123225449.GA29940@htj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170123225449.GA29940@htj.duckdns.org> Authentication-Results: smtp17.mail.ru; auth=pass smtp.auth=vdavydov@tarantool.org smtp.mailfrom=vdavydov@tarantool.org X-Mru-Trust-IP: 1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 23, 2017 at 05:54:49PM -0500, Tejun Heo wrote: > From 3b0cdd93b2d9bdea62ea6681e612bdae7a40d883 Mon Sep 17 00:00:00 2001 > From: Tejun Heo > Date: Mon, 23 Jan 2017 17:53:18 -0500 > > Separate out slub sysfs removal and release, and call the former > earlier from __kmem_cache_shutdown(). There's no reason to defer > sysfs removal through RCU and this will later allow us to remove sysfs > files way earlier during memory cgroup offline instead of release. > > v2: Add slab_state >= FULL test to sysfs_slab_release() so that > kobject_put() is skipped for caches which aren't fully initialized > as before. This most likely leaks the kmem_cache on init failure > as we're skipping the only release path. Let's fix that up later. > > Signed-off-by: Tejun Heo > Cc: Vladimir Davydov > Cc: Christoph Lameter > Cc: Pekka Enberg > Cc: David Rientjes > Cc: Joonsoo Kim > Cc: Andrew Morton Acked-by: Vladimir Davydov