From patchwork Mon May 17 09:58:46 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juerg Haefliger X-Patchwork-Id: 12261389 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=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 D5ACDC433ED for ; Mon, 17 May 2021 09:59:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B99CD61260 for ; Mon, 17 May 2021 09:59:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236531AbhEQKAh (ORCPT ); Mon, 17 May 2021 06:00:37 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:34610 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230248AbhEQKAF (ORCPT ); Mon, 17 May 2021 06:00:05 -0400 Received: from mail-ej1-f70.google.com ([209.85.218.70]) by youngberry.canonical.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1lia1Q-0002Ug-OJ for linux-fsdevel@vger.kernel.org; Mon, 17 May 2021 09:58:48 +0000 Received: by mail-ej1-f70.google.com with SMTP id z15-20020a170906074fb029038ca4d43d48so821511ejb.17 for ; Mon, 17 May 2021 02:58:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=MuIfAQM2fPksT8Cjpn/L4q8gn5avsGeJOiJIGmWyxz0=; b=NWrAToQMIKFrnEFLe4GUNI8R8yijMhxmB1scMfeYIzb70bE08GqczT8WwAi6+kXqv2 UESvJILgqdDi+bM6jaJgf/h0IpWbVQ+ohEPdxcssHHk84DG5mUz7140SKN5YNbmAu7zE F6y1CGTiSDtx73ZjO1yHFLMSv3uwEcTtAiF0VaAtfQv32bT0PeyCKCvhXl2Ig7WIYxMC f8bLNbpq20YBEbGhkaBolt8fX9nmOy0Cc5kfxe+FL9O4CXs7XIJcTZx4L++pBrhoKSXD 8ALguOOQsJJ3rJDIJx703KYXrwQkuQYcRY1NLbcxQLnrL8lfU2LoVnaW6PwgtU+t3r+C IKmQ== X-Gm-Message-State: AOAM530/neneeKBPqO53U9zEaaGVylQg1N/6NgL94QDZ6TMIR8mHTSwH yByvzCLPYFUSHu86DfFT+bWzwfEbXZb13FtjWF4gjkbzCJIYxs99t74j/XVGEymn6zDJA0MlMFm 9vmK4kEy+SVbNjpl3+ypNCiuuBzFGASc154FR8lUFtrI= X-Received: by 2002:a17:906:2b4b:: with SMTP id b11mr13130488ejg.379.1621245528514; Mon, 17 May 2021 02:58:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJz+S4g2qplOrmASgq0AGDZuzl5+rpuqj0iJRBdrNJn4cONC8fuW4IDa6uiC/zJeD8ei1c/3TA== X-Received: by 2002:a17:906:2b4b:: with SMTP id b11mr13130475ejg.379.1621245528377; Mon, 17 May 2021 02:58:48 -0700 (PDT) Received: from gollum.fritz.box ([194.191.244.86]) by smtp.gmail.com with ESMTPSA id f7sm10907881edd.5.2021.05.17.02.58.47 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 May 2021 02:58:48 -0700 (PDT) From: Juerg Haefliger X-Google-Original-From: Juerg Haefliger To: adobriyan@gmail.com, linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org, juergh@canonical.com Subject: [PATCH] proc: Remove leading spaces in Kconfig Date: Mon, 17 May 2021 11:58:46 +0200 Message-Id: <20210517095846.81983-1-juergh@canonical.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Remove leading spaces before tabs in Kconfig file(s) by running the following command: $ find fs/proc -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' Signed-off-by: Juerg Haefliger --- fs/proc/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/proc/Kconfig b/fs/proc/Kconfig index c930001056f9..e8410a99a0ca 100644 --- a/fs/proc/Kconfig +++ b/fs/proc/Kconfig @@ -81,10 +81,10 @@ config PROC_SYSCTL limited in memory. config PROC_PAGE_MONITOR - default y + default y depends on PROC_FS && MMU bool "Enable /proc page monitoring" if EXPERT - help + help Various /proc files exist to monitor process memory utilization: /proc/pid/smaps, /proc/pid/clear_refs, /proc/pid/pagemap, /proc/kpagecount, and /proc/kpageflags. Disabling these