Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp2364095ybb; Mon, 30 Mar 2020 04:58:02 -0700 (PDT) X-Google-Smtp-Source: ADFU+vsXldBwCTG8HgovNDsr6x4Jaqv+6IqK4Cpma3mRq+VboulRzx64mcr6vmU5NX0iZEYdw7n+ X-Received: by 2002:aca:ad93:: with SMTP id w141mr7465559oie.54.1585569482454; Mon, 30 Mar 2020 04:58:02 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585569482; cv=none; d=google.com; s=arc-20160816; b=r5RqoHiI0JZog4keW1j6u/vUmIe9n86N2ihlwRmdvL6p26oBvdJ30FXgB0cHn10UST oz7/3A7fCs48TryJhBBQWRnKy5Fq2BdWJshICKnzD6xFqw1EHskSpV48Kt/YT4LMAT3w cLWfc1Huj4tiHduYOSfyIidqreYO4gOH7/URHczvHH265BQzMBmX1dj40rLGgwdeg6yJ qct+q5WP9dUlFSN+3uzy9ke1ovihjUOlwCaLNCMSX+NJ5aHxbwB/LEgEQoySUYiHPrEu CXP7+74z4+9XiLWcsr2X/tZK+/qEXOx8e5OTes8st+MkBTgPaL0dC/pynP+yWydn0/Xu R4YQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=OYkSZNFXWsleFpQQcdMs0yv2jtU6zEM1kENxpKerJtg=; b=r90VWdiM1SNE6Q1BMKSSd/wk8Mipvrbvmf94fyzreGXvDYwicFWbM+4M0qjPFJGwLV 4pqdu1TDHhaIk7M2DtzdLojWXmRKR6xq1t+RV/c5stgFrAgv2Rwk5Xd9HcZ2BaVQWm5X YQ5IAfKOoADQ+4mG3CoQciMeRlqmdfvuH+rdEQbxgBMeEgj0oNE4t/+wNJzy0Gt6hEph Z6aIfJ0lxQv64zl27l+TF6pbhxqyIQwps1b5Bb96Ik5cFA0NhMfhCuRfDFMzDg2V/t29 shnuSXd8P9GSBFe8aIXijKHxZFuF8EAEtQ1D+q/8/8mxsVG8TKkASqiIvgLtND9HCYxX VVKQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f10si6601972oti.88.2020.03.30.04.57.49; Mon, 30 Mar 2020 04:58:02 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730084AbgC3L4B (ORCPT + 99 others); Mon, 30 Mar 2020 07:56:01 -0400 Received: from mx2.suse.de ([195.135.220.15]:51502 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729941AbgC3Lzz (ORCPT ); Mon, 30 Mar 2020 07:55:55 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 96DB7ABC2; Mon, 30 Mar 2020 11:55:52 +0000 (UTC) From: Vlastimil Babka To: Luis Chamberlain , Kees Cook , Iurii Zaikin Cc: linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, linux-mm@kvack.org, Ivan Teterevkov , Michal Hocko , David Rientjes , Matthew Wilcox , "Eric W . Biederman" , "Guilherme G . Piccoli" , Alexey Dobriyan , Thomas Gleixner , Greg Kroah-Hartman , Christian Brauner , Vlastimil Babka Subject: [PATCH 2/3] kernel/sysctl: support handling command line aliases Date: Mon, 30 Mar 2020 13:55:34 +0200 Message-Id: <20200330115535.3215-3-vbabka@suse.cz> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200330115535.3215-1-vbabka@suse.cz> References: <20200330115535.3215-1-vbabka@suse.cz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We can now handle sysctl parameters on kernel command line, but historically some parameters introduced their own command line equivalent, which we don't want to remove for compatibility reasons. We can however convert them to the generic infrastructure with a table translating the legacy command line parameters to their sysctl names, and removing the one-off param handlers. This patch adds the support and makes the first conversion to demonstrate it, on the (deprecated) numa_zonelist_order parameter. Signed-off-by: Vlastimil Babka --- fs/proc/proc_sysctl.c | 48 ++++++++++++++++++++++++++++++++++++------- mm/page_alloc.c | 9 -------- 2 files changed, 41 insertions(+), 16 deletions(-) diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index 653188c9c4c9..97eb0b552bf8 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c @@ -1727,6 +1727,37 @@ int __init proc_sys_init(void) return sysctl_init(); } +struct sysctl_alias { + const char *kernel_param; + const char *sysctl_param; +}; + +/* + * Historically some settings had both sysctl and a command line parameter. + * With the generic sysctl. parameter support, we can handle them at a single + * place and only keep the historical name for compatibility. This is not meant + * to add brand new aliases. When adding existing aliases, consider whether + * the possibly different moment of changing the value (e.g. from early_param + * to the moment do_sysctl_args() is called) is an issue for the specific + * parameter. + */ +static const struct sysctl_alias sysctl_aliases[] = { + {"numa_zonelist_order", "vm.numa_zonelist_order" }, + { } +}; + +static const char *sysctl_find_alias(char *param) +{ + const struct sysctl_alias *alias; + + for (alias = &sysctl_aliases[0]; alias->kernel_param != NULL; alias++) { + if (strcmp(alias->kernel_param, param) == 0) + return alias->sysctl_param; + } + + return NULL; +} + /* Set sysctl value passed on kernel command line. */ static int process_sysctl_arg(char *param, char *val, const char *unused, void *arg) @@ -1740,15 +1771,18 @@ static int process_sysctl_arg(char *param, char *val, loff_t pos = 0; ssize_t wret; - if (strncmp(param, "sysctl", sizeof("sysctl") - 1)) - return 0; - - param += sizeof("sysctl") - 1; + if (strncmp(param, "sysctl", sizeof("sysctl") - 1) == 0) { + param += sizeof("sysctl") - 1; - if (param[0] != '/' && param[0] != '.') - return 0; + if (param[0] != '/' && param[0] != '.') + return 0; - param++; + param++; + } else { + param = (char *) sysctl_find_alias(param); + if (!param) + return 0; + } if (!proc_mnt) { proc_fs_type = get_fs_type("proc"); diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 3c4eb750a199..de7a134b1b8a 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -5460,15 +5460,6 @@ static int __parse_numa_zonelist_order(char *s) return 0; } -static __init int setup_numa_zonelist_order(char *s) -{ - if (!s) - return 0; - - return __parse_numa_zonelist_order(s); -} -early_param("numa_zonelist_order", setup_numa_zonelist_order); - char numa_zonelist_order[] = "Node"; /* -- 2.25.1