From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E730A7347B; Mon, 2 Sep 2024 10:55:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.189 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725274535; cv=none; b=bbN/cHXsqBk4MBKDaEYfyDnQsPxuZZ7L8rfu0Dsdbv++4/A4aQGMBEi+UQXjfQk4B+3QmQa00E93JtEvFpdtfeJTwvxdlX0VZVbgkzhvPezSqxEZGkW1WdCWdZCDBgd/ko3/DCbVURvy3m60cPPJEG/kRP49Z0zMUkrLd1CJO70= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725274535; c=relaxed/simple; bh=/ZnDWgOWryVILcL4vVPJWm3z55PNypoxLjeVJcXAz5Y=; h=Subject:To:References:CC:From:Message-ID:Date:MIME-Version: In-Reply-To:Content-Type; b=qo77AkXr3gQQFpoHq0HpoAs54egzlJovKrd+ARLC4gKQWwSqD2eCTRu0McFkXcuascQLpiETmnBs+FKHINK0ECvNDkVo1lZOFAOnq1ocpCMf1s8DMjAxC2y95Sgd8TpM7mfEMMlY2YtgM3DkxrRQAL7AEVvH5OMmurE32sEqzh4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.189 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.163.252]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4Wy5Bd2g8rz69Qt; Mon, 2 Sep 2024 18:50:33 +0800 (CST) Received: from kwepemh100016.china.huawei.com (unknown [7.202.181.102]) by mail.maildlp.com (Postfix) with ESMTPS id A2AB51800A7; Mon, 2 Sep 2024 18:55:28 +0800 (CST) Received: from [10.174.178.75] (10.174.178.75) by kwepemh100016.china.huawei.com (7.202.181.102) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Mon, 2 Sep 2024 18:55:25 +0800 Subject: Re: [PATCH -next 00/15] sysctl: move sysctls from vm_table into its own files To: Joel Granados References: <20240826120449.1666461-1-yukaixiong@huawei.com> <20240902071752.5ieq3khrnpjqq6qv@joelS2.panther.com> CC: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , From: yukaixiong Message-ID: <003ce112-d895-5f1d-d034-b61b7f68cebd@huawei.com> Date: Mon, 2 Sep 2024 18:55:24 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 In-Reply-To: <20240902071752.5ieq3khrnpjqq6qv@joelS2.panther.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-ClientProxiedBy: dggpeml500014.china.huawei.com (7.185.36.63) To kwepemh100016.china.huawei.com (7.202.181.102) On 2024/9/2 15:17, Joel Granados wrote: > On Mon, Aug 26, 2024 at 08:04:34PM +0800, Kaixiong Yu wrote: >> This patch series moves sysctls of vm_table in kernel/sysctl.c to >> places where they actually belong, and do some related code clean-ups. >> After this patch series, all sysctls in vm_table have been moved into its >> own files, meanwhile, delete vm_table. >> >> All the modifications of this patch series base on >> linux-next(tags/next-20240823). To test this patch series, the code was >> compiled with both the CONFIG_SYSCTL enabled and disabled on arm64 and >> x86_64 architectures. After this patch series is applied, all files >> under /proc/sys/vm can be read or written normally. >> >> Kaixiong Yu (15): >> mm: vmstat: move sysctls to its own files >> mm: filemap: move sysctl to its own file >> mm: swap: move sysctl to its own file >> mm: vmscan: move vmscan sysctls to its own file >> mm: util: move sysctls into it own files >> mm: mmap: move sysctl into its own file >> security: min_addr: move sysctl into its own file >> mm: nommu: move sysctl to its own file >> fs: fs-writeback: move sysctl to its own file >> fs: drop_caches: move sysctl to its own file >> sunrpc: use vfs_pressure_ratio() helper >> fs: dcache: move the sysctl into its own file >> x86: vdso: move the sysctl into its own file >> sh: vdso: move the sysctl into its own file >> sysctl: remove unneeded include >> > Thx for this. > > I passed this through 0-day testing and it return some errors. Please > address those build errors/regrssions before you send V2. > > Best ok,I will fix those errors/warnings in v2