linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] sysctl changes for v5.19-rc1
@ 2022-05-25 22:47 Luis Chamberlain
  2022-05-27  0:32 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Luis Chamberlain @ 2022-05-25 22:47 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: patches, Kees Cook, Iurii Zaikin, linux-fsdevel, Andrew Morton,
	Zhen Ni, Baisong Zhong, tangmeng, sujiaxun, zhanglianjie,
	Wei Xiao, Steven Rostedt, Yan Zhu, YueHaibing, liaohua,
	Davidlohr Bueso, Vasily Averin, yingelin, Stephen Rothwell,
	Konstantin Ryabitsev, Linux Kernel Mailing List, mcgrof

Linus,

Nothing exciting at all here, nothing except more cleanup to the kernel/sysctl.c
kitchen sink. This all goes tested on linux-next for a while. Without 0-day
this would have been painful.

Thanks a lot to the Uniontech and Huawei folks for doing some of this
nasty work.

Let me know if how I list possible merge conflicts works well, or if
you might have another preferred way. I'm thinking about a possible way
to later isolate those and use an optional git resolver for addressing
merge conflicts automatically. Such tactics could use some of the
metadata somehow on these emails, but *how* should we express this in
a pull request? And would there be a way (perhaps b4?) to query for
possible merge conflicts on a pull request?

The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git/ tags/sysctl-5.19-rc1

for you to fetch changes up to 494dcdf46e5cdee926c9f441d37e3ea1db57d1da:

  sched: Fix build warning without CONFIG_SYSCTL (2022-05-09 16:54:57 -0700)

----------------------------------------------------------------
sysctl changes for v5.19-rc1

For two kernel releases now kernel/sysctl.c has been being cleaned up
slowly, since the tables were grossly long, sprinkled with tons of #ifdefs and
all this caused merge conflicts with one susbystem or another.

This tree was put together to help try to avoid conflicts with these cleanups
going on different trees at time. So nothing exciting on this pull request,
just cleanups.

I actually had this sysctl-next tree up since v5.18 but I missed sending a
pull request for it on time during the last merge window. And so these changes
have been being soaking up on sysctl-next and so linux-next for a while.
The last change was merged May 4th.

Most of the compile issues were reported by 0day and fixed.

To help avoid a conflict with bpf folks at Daniel Borkmann's request
I merged bpf-next/pr/bpf-sysctl into sysctl-next to get the effor which
moves the BPF sysctls from kernel/sysctl.c to BPF core.

Possible merge conflicts and known resolutions as per linux-next:

bfp:
https://lkml.kernel.org/r/20220414112812.652190b5@canb.auug.org.au

rcu:
https://lkml.kernel.org/r/20220420153746.4790d532@canb.auug.org.au

powerpc:
https://lkml.kernel.org/r/20220520154055.7f964b76@canb.auug.org.au

----------------------------------------------------------------
Baisong Zhong (1):
      sched/rt: fix build error when CONFIG_SYSCTL is disable

Luis Chamberlain (4):
      Merge remote-tracking branch 'bpf-next/pr/bpf-sysctl' into sysctl-next
      ftrace: fix building with SYSCTL=n but DYNAMIC_FTRACE=y
      mm: fix unused variable kernel warning when SYSCTL=n
      ftrace: fix building with SYSCTL=y but DYNAMIC_FTRACE=n

Meng Tang (1):
      fs/proc: Introduce list_for_each_table_entry for proc sysctl

Vasily Averin (1):
      sysctl: minor cleanup in new_dir()

Wei Xiao (1):
      ftrace: move sysctl_ftrace_enabled to ftrace.c

Yan Zhu (1):
      bpf: Move BPF sysctls from kernel/sysctl.c to BPF core

YueHaibing (3):
      ftrace: Fix build warning
      reboot: Fix build warning without CONFIG_SYSCTL
      sched: Fix build warning without CONFIG_SYSCTL

Zhen Ni (8):
      sched: Move child_runs_first sysctls to fair.c
      sched: Move schedstats sysctls to core.c
      sched: Move rt_period/runtime sysctls to rt.c
      sched: Move deadline_period sysctls to deadline.c
      sched: Move rr_timeslice sysctls to rt.c
      sched: Move uclamp_util sysctls to core.c
      sched: Move cfs_bandwidth_slice sysctls to fair.c
      sched: Move energy_aware sysctls to topology.c

liaohua (1):
      latencytop: move sysctl to its own file

sujiaxun (1):
      mm: move oom_kill sysctls to their own file

tangmeng (6):
      kernel/reboot: move reboot sysctls to its own file
      kernel/lockdep: move lockdep sysctls to its own file
      kernel/panic: move panic sysctls to its own file
      kernel/acct: move acct sysctls to its own file
      kernel/delayacct: move delayacct sysctls to its own file
      kernel/do_mount_initrd: move real_root_dev sysctls to its own file

yingelin (1):
      kernel/kexec_core: move kexec_core sysctls into its own file

zhanglianjie (1):
      mm: move page-writeback sysctls to their own file

 fs/proc/proc_sysctl.c        |  89 +++++-----
 include/linux/acct.h         |   1 -
 include/linux/delayacct.h    |   3 -
 include/linux/ftrace.h       |   3 -
 include/linux/initrd.h       |   2 -
 include/linux/latencytop.h   |   3 -
 include/linux/lockdep.h      |   4 -
 include/linux/oom.h          |   4 -
 include/linux/panic.h        |   6 -
 include/linux/reboot.h       |   4 -
 include/linux/sched/sysctl.h |  41 -----
 include/linux/writeback.h    |  15 --
 init/do_mounts_initrd.c      |  22 ++-
 kernel/acct.c                |  22 ++-
 kernel/bpf/syscall.c         |  87 ++++++++++
 kernel/delayacct.c           |  22 ++-
 kernel/kexec_core.c          |  22 +++
 kernel/latencytop.c          |  41 +++--
 kernel/locking/lockdep.c     |  35 +++-
 kernel/panic.c               |  26 ++-
 kernel/rcu/rcu.h             |   2 +
 kernel/reboot.c              |  34 +++-
 kernel/sched/core.c          | 130 ++++++++++-----
 kernel/sched/deadline.c      |  42 ++++-
 kernel/sched/fair.c          |  32 +++-
 kernel/sched/rt.c            |  63 ++++++-
 kernel/sched/sched.h         |   7 +
 kernel/sched/topology.c      |  25 ++-
 kernel/sysctl.c              | 379 -------------------------------------------
 kernel/trace/ftrace.c        | 101 +++++++-----
 mm/oom_kill.c                |  38 ++++-
 mm/page-writeback.c          | 104 ++++++++++--
 32 files changed, 774 insertions(+), 635 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] sysctl changes for v5.19-rc1
  2022-05-25 22:47 [GIT PULL] sysctl changes for v5.19-rc1 Luis Chamberlain
@ 2022-05-27  0:32 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-05-27  0:32 UTC (permalink / raw)
  To: Luis Chamberlain
  Cc: Linus Torvalds, patches, Kees Cook, Iurii Zaikin, linux-fsdevel,
	Andrew Morton, Zhen Ni, Baisong Zhong, tangmeng, sujiaxun,
	zhanglianjie, Wei Xiao, Steven Rostedt, Yan Zhu, YueHaibing,
	liaohua, Davidlohr Bueso, Vasily Averin, yingelin,
	Stephen Rothwell, Konstantin Ryabitsev,
	Linux Kernel Mailing List, mcgrof

The pull request you sent on Wed, 25 May 2022 15:47:06 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git/ tags/sysctl-5.19-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/44d35720c9a660074b77ab9de37abf2c01c5b44f

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-05-27  0:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-25 22:47 [GIT PULL] sysctl changes for v5.19-rc1 Luis Chamberlain
2022-05-27  0:32 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).