Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753434AbbGNUVz (ORCPT ); Tue, 14 Jul 2015 16:21:55 -0400 Received: from mail-lb0-f180.google.com ([209.85.217.180]:33533 "EHLO mail-lb0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752132AbbGNUVx (ORCPT ); Tue, 14 Jul 2015 16:21:53 -0400 MIME-Version: 1.0 In-Reply-To: References: <20150714131704.21442.17939.stgit@buzz> <20150714131705.21442.99279.stgit@buzz> Date: Tue, 14 Jul 2015 23:21:52 +0300 Message-ID: Subject: Re: [PATCH 2/2] mm/slub: disable merging after enabling debug in runtime From: Konstantin Khlebnikov To: Christoph Lameter Cc: Konstantin Khlebnikov , "linux-mm@kvack.org" , Andrew Morton , Linux Kernel Mailing List Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1858 Lines: 45 On Tue, Jul 14, 2015 at 9:11 PM, Christoph Lameter wrote: > On Tue, 14 Jul 2015, Konstantin Khlebnikov wrote: > >> Enabling debug in runtime breaks creation of new kmem caches: >> they have incompatible flags thus cannot be merged but unique >> names are taken by existing caches. > > What breaks? The same commands from first patch: # echo 1 | tee /sys/kernel/slab/*/sanity_checks # modprobe configfs loading configfs now fails (without crashing kernel though) because of "sysfs: cannot create duplicate filename '/kernel/slab/:t-0000096'" Of course we could rename sysfs entry when enable debug options but that requires much more code than my "stop merging" solution. > > Caches may already have been merged and thus the question is what to do > about a cache that has multiple aliases if a runtime option is requested. > The solution that slub implements is to only allow a limited number of > debug operations to be enabled. Those then will appear to affect all > aliases of course. > > Creating additional caches later may create additional > aliasing which will then restrict what options can be changed. > > Other operations are also restricted depending on the number of objects > stored in a cache. A cache with zero objects can be easily reconfigured. > If there are objects then modifications that impact object size are not > allowed anymore. > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org -- 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/