From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E20BFC76195 for ; Thu, 18 Jul 2019 18:04:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B84C720873 for ; Thu, 18 Jul 2019 18:04:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390843AbfGRSEk (ORCPT ); Thu, 18 Jul 2019 14:04:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48334 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727780AbfGRSEk (ORCPT ); Thu, 18 Jul 2019 14:04:40 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 875EA2BFCA; Thu, 18 Jul 2019 18:04:39 +0000 (UTC) Received: from llong.remote.csb (dhcp-17-160.bos.redhat.com [10.18.17.160]) by smtp.corp.redhat.com (Postfix) with ESMTP id 679025D71A; Thu, 18 Jul 2019 18:04:34 +0000 (UTC) Subject: Re: [PATCH v2 2/2] mm, slab: Show last shrink time in us when slab/shrink is read From: Waiman Long To: Christopher Lameter Cc: Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Michal Hocko , Roman Gushchin , Johannes Weiner , Shakeel Butt , Vladimir Davydov References: <20190717202413.13237-1-longman@redhat.com> <20190717202413.13237-3-longman@redhat.com> <0100016c04e1562a-e516c595-1d46-40df-ab29-da1709277e9a-000000@email.amazonses.com> <6fb9f679-02d1-c33f-2d79-4c2eaa45d264@redhat.com> Organization: Red Hat Message-ID: <9d35da26-6d85-d879-c966-3577bdb0cf02@redhat.com> Date: Thu, 18 Jul 2019 14:04:33 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0 MIME-Version: 1.0 In-Reply-To: <6fb9f679-02d1-c33f-2d79-4c2eaa45d264@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Thu, 18 Jul 2019 18:04:40 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 7/18/19 10:36 AM, Waiman Long wrote: >>> CONFIG_SLUB_DEBUG depends on CONFIG_SYSFS. So the new shrink_us field >>> is always available to the shrink methods. >> Aside from minimal systems without CONFIG_SYSFS... Does this build without >> CONFIG_SYSFS? > The sysfs code in mm/slub.c is guarded by CONFIG_SLUB_DEBUG which, in > turn, depends on CONFIG_SYSFS. So if CONFIG_SYSFS is off, the shrink > sysfs methods will be off as well. I haven't tried doing a minimal > build. I will certainly try that, but I don't expect any problem here. I have tried a tiny config with slub. There was no compilation problem. -Longman