linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: yukaixiong <yukaixiong@huawei.com>
To: Joel Granados <j.granados@samsung.com>
Cc: <akpm@linux-foundation.org>, <mcgrof@kernel.org>,
	<ysato@users.osdn.me>, <dalias@libc.org>,
	<glaubitz@physik.fu-berlin.de>, <luto@kernel.org>,
	<tglx@linutronix.de>, <mingo@redhat.com>, <bp@alien8.de>,
	<dave.hansen@linux.intel.com>, <hpa@zytor.com>,
	<viro@zeniv.linux.org.uk>, <brauner@kernel.org>, <jack@suse.cz>,
	<kees@kernel.org>, <willy@infradead.org>,
	<Liam.Howlett@oracle.com>, <vbabka@suse.cz>,
	<lorenzo.stoakes@oracle.com>, <trondmy@kernel.org>,
	<anna@kernel.org>, <chuck.lever@oracle.com>, <jlayton@kernel.org>,
	<neilb@suse.de>, <okorniev@redhat.com>, <Dai.Ngo@oracle.com>,
	<tom@talpey.com>, <davem@davemloft.net>, <edumazet@google.com>,
	<kuba@kernel.org>, <pabeni@redhat.com>, <paul@paul-moore.com>,
	<jmorris@namei.org>, <linux-sh@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, <linux-fsdevel@vger.kernel.org>,
	<linux-mm@kvack.org>, <linux-nfs@vger.kernel.org>,
	<netdev@vger.kernel.org>, <linux-security-module@vger.kernel.org>,
	<dhowells@redhat.com>, <haifeng.xu@shopee.com>,
	<baolin.wang@linux.alibaba.com>, <shikemeng@huaweicloud.com>,
	<dchinner@redhat.com>, <bfoster@redhat.com>,
	<souravpanda@google.com>, <hannes@cmpxchg.org>,
	<rientjes@google.com>, <pasha.tatashin@soleen.com>,
	<david@redhat.com>, <ryan.roberts@arm.com>,
	<ying.huang@intel.com>, <yang@os.amperecomputing.com>,
	<zev@bewilderbeest.net>, <serge@hallyn.com>,
	<vegard.nossum@oracle.com>, <wangkefeng.wang@huawei.com>,
	<sunnanyong@huawei.com>, <joel.granados@kernel.org>
Subject: Re: [PATCH v3 -next 00/15] sysctl: move sysctls from vm_table into its own files
Date: Thu, 19 Dec 2024 19:15:16 +0800	[thread overview]
Message-ID: <69509584-92c2-6bcd-0aef-406af7606239@huawei.com> (raw)
In-Reply-To: <wk7dqsx42rxjt76dowrydumhinwwdltw7e5ptp7fh4rc4c4sji@jrtopui4fpwb>



On 2024/10/24 16:59, Joel Granados wrote:
> On Thu, Oct 24, 2024 at 04:07:10PM +0800, yukaixiong wrote:
> ...
>>
>>>>    mm/swap.c                          |  16 ++-
>>>>    mm/swap.h                          |   1 +
>>>>    mm/util.c                          |  67 +++++++--
>>>>    mm/vmscan.c                        |  23 +++
>>>>    mm/vmstat.c                        |  44 +++++-
>>>>    net/sunrpc/auth.c                  |   2 +-
>>>>    security/min_addr.c                |  11 ++
>>>>    23 files changed, 330 insertions(+), 312 deletions(-)
>>>>
>>>> -- 
>>>> 2.34.1
>>>>
>>> General comment for the patchset in general. I would consider making the
>>> new sysctl tables const. There is an effort for doing this and it has
>>> already lanted in linux-next. So if you base your patch from a recent
>>> next release, then it should just work. If you *do* decide to add a
>>> const qualifier, then note that you will create a dependency with the
>>> sysctl patchset currently in next and that will have to go in before.
>>>
>>> Best
>>>
>> Sorry,  I don't understand what is the meaning of "create a dependency
>> with the sysctl patchset".
> The patches in the sysctl subsys that allow you to qualify the ctl_table
> as const are not in mainline yet. They are in linux-next. This means
> that if these patches go into the next kernel release before the
> sysctl-next branch, it will have compilation errors. Therefore the
> sysctl-next branch needs to be pulled in to the new kernel release
> before this patchest. This also means that for this to build properly it
> has to be based on a linux-next release.
>
>> Do you just want me to change all "static struct ctl_table" type table
>> into "static const struct ctl_table" type in my patchset?
> You should const qualify them if the maintainer that is pulling in these
> patches is ok with it. You should *not* const qualify them if the
> maintainer prefers otherwise.
>
> Please get back to me if I did not address your questions.
>
> Best

Thank you! Now, I decide to const qualify them. Maybe, it will be better.



      reply	other threads:[~2024-12-19 11:15 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20241010141133eucas1p1999f17c74198d3880cbd345276bcd3bd@eucas1p1.samsung.com>
2024-10-10 15:22 ` Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 01/15] mm: vmstat: move sysctls to mm/vmstat.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 02/15] mm: filemap: move sysctl to mm/filemap.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 03/15] mm: swap: move sysctl to mm/swap.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 04/15] mm: vmscan: move vmscan sysctls to mm/vmscan.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 05/15] mm: util: move sysctls to mm/util.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 06/15] mm: mmap: move sysctl to mm/mmap.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 07/15] security: min_addr: move sysctl to security/min_addr.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 08/15] mm: nommu: move sysctl to mm/nommu.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 09/15] fs: fs-writeback: move sysctl to fs/fs-writeback.c Kaixiong Yu
2024-10-14 12:14     ` Jan Kara
2024-10-10 15:22   ` [PATCH v3 -next 10/15] fs: drop_caches: move sysctl to fs/drop_caches.c Kaixiong Yu
2024-10-14 12:15     ` Jan Kara
2024-10-15 14:02     ` Christian Brauner
2024-10-10 15:22   ` [PATCH v3 -next 11/15] sunrpc: use vfs_pressure_ratio() helper Kaixiong Yu
2024-10-10 14:44     ` Jeff Layton
2024-10-10 21:43       ` NeilBrown
2024-10-11 12:38         ` Jeff Layton
2024-12-19 10:20           ` yukaixiong
2024-12-19 10:17         ` yukaixiong
2024-10-10 15:22   ` [PATCH v3 -next 12/15] fs: dcache: move the sysctl to fs/dcache.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 13/15] x86: vdso: move the sysctl to arch/x86/entry/vdso/vdso32-setup.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 14/15] sh: vdso: move the sysctl to arch/sh/kernel/vsyscall/vsyscall.c Kaixiong Yu
2024-10-10 15:22   ` [PATCH v3 -next 15/15] sysctl: remove unneeded include Kaixiong Yu
2024-10-11 13:04   ` [PATCH v3 -next 00/15] sysctl: move sysctls from vm_table into its own files Liam R. Howlett
2024-10-14  1:33     ` yukaixiong
2024-10-21  7:22   ` Joel Granados
2024-10-24  8:07     ` yukaixiong
2024-10-24  8:59       ` Joel Granados
2024-12-19 11:15         ` yukaixiong [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=69509584-92c2-6bcd-0aef-406af7606239@huawei.com \
    --to=yukaixiong@huawei.com \
    --cc=Dai.Ngo@oracle.com \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=anna@kernel.org \
    --cc=baolin.wang@linux.alibaba.com \
    --cc=bfoster@redhat.com \
    --cc=bp@alien8.de \
    --cc=brauner@kernel.org \
    --cc=chuck.lever@oracle.com \
    --cc=dalias@libc.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=davem@davemloft.net \
    --cc=david@redhat.com \
    --cc=dchinner@redhat.com \
    --cc=dhowells@redhat.com \
    --cc=edumazet@google.com \
    --cc=glaubitz@physik.fu-berlin.de \
    --cc=haifeng.xu@shopee.com \
    --cc=hannes@cmpxchg.org \
    --cc=hpa@zytor.com \
    --cc=j.granados@samsung.com \
    --cc=jack@suse.cz \
    --cc=jlayton@kernel.org \
    --cc=jmorris@namei.org \
    --cc=joel.granados@kernel.org \
    --cc=kees@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=linux-security-module@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=luto@kernel.org \
    --cc=mcgrof@kernel.org \
    --cc=mingo@redhat.com \
    --cc=neilb@suse.de \
    --cc=netdev@vger.kernel.org \
    --cc=okorniev@redhat.com \
    --cc=pabeni@redhat.com \
    --cc=pasha.tatashin@soleen.com \
    --cc=paul@paul-moore.com \
    --cc=rientjes@google.com \
    --cc=ryan.roberts@arm.com \
    --cc=serge@hallyn.com \
    --cc=shikemeng@huaweicloud.com \
    --cc=souravpanda@google.com \
    --cc=sunnanyong@huawei.com \
    --cc=tglx@linutronix.de \
    --cc=tom@talpey.com \
    --cc=trondmy@kernel.org \
    --cc=vbabka@suse.cz \
    --cc=vegard.nossum@oracle.com \
    --cc=viro@zeniv.linux.org.uk \
    --cc=wangkefeng.wang@huawei.com \
    --cc=willy@infradead.org \
    --cc=yang@os.amperecomputing.com \
    --cc=ying.huang@intel.com \
    --cc=ysato@users.osdn.me \
    --cc=zev@bewilderbeest.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox