linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] cgroup changes for v4.21-rc1
@ 2018-12-28  2:16 Tejun Heo
  2018-12-28 18:41 ` [GIT UPDATED " Tejun Heo
  2018-12-29 19:55 ` [GIT " pr-tracker-bot
  0 siblings, 2 replies; 4+ messages in thread
From: Tejun Heo @ 2018-12-28  2:16 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel
  Cc: Li Zefan, Johannes Weiner, cgroups, Waiman Long

Hello, Linus.

cgroup changes for v4.21.

* Waiman's cgroup2 cpuset support has been finally merged closing one
  of the last remaining feature gaps.

* cgroup.procs could show non-leader threads when cgroup2 threaded
  mode was used in certain ways.  I forgot to push the fix during the
  last cycle.

Happy new year!

The following changes since commit f2ce1065e767fc7da106a5f5381d1e8f842dc6f4:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2018-11-19 09:24:04 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-4.21

for you to fetch changes up to 4d71c6f8771a6bccb844244f09831fa4624b22c1:

  Merge branch 'for-4.20-fixes' into for-4.21 (2018-12-27 18:05:30 -0800)

----------------------------------------------------------------
Tejun Heo (4):
      cpuset: Minor cgroup2 interface updates
      cgroup: Add .__DEBUG__. prefix to debug file names
      cgroup: fix CSS_TASK_ITER_PROCS
      Merge branch 'for-4.20-fixes' into for-4.21

Waiman Long (12):
      cpuset: Enable cpuset controller in default hierarchy
      cpuset: Define data structures to support scheduling partition
      cpuset: Simply allocation and freeing of cpumasks
      cpuset: Add new v2 cpuset.sched.partition flag
      cpuset: Add an error state to cpuset.sched.partition
      cpuset: Track cpusets that use parent's effective_cpus
      cpuset: Make CPU hotplug work with partition
      cpuset: Make generate_sched_domains() work with partition
      cpuset: Expose cpus.effective and mems.effective on cgroup v2 root
      cpuset: Use descriptive text when reading/writing cpuset.sched.partition
      cpuset: Add documentation about the new "cpuset.sched.partition" flag
      cpuset: Expose cpuset.cpus.subpartitions with cgroup_debug

Yangtao Li (1):
      cgroup: remove unnecessary unlikely()

YueHaibing (1):
      cpuset: Remove set but not used variable 'cs'

 Documentation/admin-guide/cgroup-v2.rst | 182 +++++-
 include/linux/cgroup-defs.h             |   1 +
 kernel/cgroup/cgroup-internal.h         |   2 +
 kernel/cgroup/cgroup.c                  |  58 +-
 kernel/cgroup/cpuset.c                  | 944 +++++++++++++++++++++++++++++---
 kernel/cgroup/debug.c                   |   4 +-
 6 files changed, 1095 insertions(+), 96 deletions(-)

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

* [GIT UPDATED PULL] cgroup changes for v4.21-rc1
  2018-12-28  2:16 [GIT PULL] cgroup changes for v4.21-rc1 Tejun Heo
@ 2018-12-28 18:41 ` Tejun Heo
  2018-12-29 19:55   ` pr-tracker-bot
  2018-12-29 19:55 ` [GIT " pr-tracker-bot
  1 sibling, 1 reply; 4+ messages in thread
From: Tejun Heo @ 2018-12-28 18:41 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel
  Cc: Li Zefan, Johannes Weiner, cgroups, Waiman Long

Hello, Linus.

Updated cgroup pull request for v4.21.  The last two bullets are the
additions.

* Waiman's cgroup2 cpuset support has been finally merged closing one
  of the last remaining feature gaps.

* cgroup.procs could show non-leader threads when cgroup2 threaded
  mode was used in certain ways.  I forgot to push the fix during the
  last cycle.

* A patch to fix mount option parsing when all mount options have been
  consumed by someone else (LSM).

* cgroup_no_v1 boot param can now block named cgroup1 hierarchies too.

Thanks.

The following changes since commit f2ce1065e767fc7da106a5f5381d1e8f842dc6f4:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2018-11-19 09:24:04 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-4.21

for you to fetch changes up to 3fc9c12d27b4ded4f1f761a800558dab2e6bbac5:

  cgroup: Add named hierarchy disabling to cgroup_no_v1 boot param (2018-12-28 10:34:12 -0800)

----------------------------------------------------------------
Ondrej Mosnacek (1):
      cgroup: fix parsing empty mount option string

Tejun Heo (5):
      cpuset: Minor cgroup2 interface updates
      cgroup: Add .__DEBUG__. prefix to debug file names
      cgroup: fix CSS_TASK_ITER_PROCS
      Merge branch 'for-4.20-fixes' into for-4.21
      cgroup: Add named hierarchy disabling to cgroup_no_v1 boot param

Waiman Long (12):
      cpuset: Enable cpuset controller in default hierarchy
      cpuset: Define data structures to support scheduling partition
      cpuset: Simply allocation and freeing of cpumasks
      cpuset: Add new v2 cpuset.sched.partition flag
      cpuset: Add an error state to cpuset.sched.partition
      cpuset: Track cpusets that use parent's effective_cpus
      cpuset: Make CPU hotplug work with partition
      cpuset: Make generate_sched_domains() work with partition
      cpuset: Expose cpus.effective and mems.effective on cgroup v2 root
      cpuset: Use descriptive text when reading/writing cpuset.sched.partition
      cpuset: Add documentation about the new "cpuset.sched.partition" flag
      cpuset: Expose cpuset.cpus.subpartitions with cgroup_debug

Yangtao Li (1):
      cgroup: remove unnecessary unlikely()

YueHaibing (1):
      cpuset: Remove set but not used variable 'cs'

 Documentation/admin-guide/cgroup-v2.rst         | 182 ++++-
 Documentation/admin-guide/kernel-parameters.txt |   8 +-
 include/linux/cgroup-defs.h                     |   1 +
 kernel/cgroup/cgroup-internal.h                 |   2 +
 kernel/cgroup/cgroup-v1.c                       |  14 +-
 kernel/cgroup/cgroup.c                          |  60 +-
 kernel/cgroup/cpuset.c                          | 944 ++++++++++++++++++++++--
 kernel/cgroup/debug.c                           |   4 +-
 8 files changed, 1115 insertions(+), 100 deletions(-)

-- 
tejun

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

* Re: [GIT PULL] cgroup changes for v4.21-rc1
  2018-12-28  2:16 [GIT PULL] cgroup changes for v4.21-rc1 Tejun Heo
  2018-12-28 18:41 ` [GIT UPDATED " Tejun Heo
@ 2018-12-29 19:55 ` pr-tracker-bot
  1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2018-12-29 19:55 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Linus Torvalds, linux-kernel, Li Zefan, Johannes Weiner, cgroups,
	Waiman Long

The pull request you sent on Thu, 27 Dec 2018 18:16:05 -0800:

> git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-4.21

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

Thank you!

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

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

* Re: [GIT UPDATED PULL] cgroup changes for v4.21-rc1
  2018-12-28 18:41 ` [GIT UPDATED " Tejun Heo
@ 2018-12-29 19:55   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2018-12-29 19:55 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Linus Torvalds, linux-kernel, Li Zefan, Johannes Weiner, cgroups,
	Waiman Long

The pull request you sent on Fri, 28 Dec 2018 10:41:17 -0800:

> git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-4.21

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6f9d71c9c759b1e7d31189a4de228983192c7dc7

Thank you!

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

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

end of thread, other threads:[~2018-12-29 19:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-28  2:16 [GIT PULL] cgroup changes for v4.21-rc1 Tejun Heo
2018-12-28 18:41 ` [GIT UPDATED " Tejun Heo
2018-12-29 19:55   ` pr-tracker-bot
2018-12-29 19:55 ` [GIT " 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).