All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] cgroup changes for v5.7-rc1
@ 2020-04-03 15:52 ` Tejun Heo
  0 siblings, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2020-04-03 15:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, cgroups, Johannes Weiner, Li Zefan

Hello, Linus.

* Christian extended clone3 so that processes can be spawned into cgroups
  directly. This is not only neat in terms of semantics but also avoids grabbing
  the global cgroup_threadgroup_rwsem for migration.

* Daniel added !root xattr support to cgroupfs. Userland already uses xattrs on
  cgroupfs for bookkeeping. This will allow delegated cgroups to support such
  usages.

* Prateek tried to make cpuset hotplug handling synchronous but that led to
  possible deadlock scenarios. Reverted.

* Other minor changes including release_agent_path handling cleanup.

Thanks.

The following changes since commit 2e5383d7904e60529136727e49629a82058a5607:

  cgroup1: don't call release_agent when it is "" (2020-03-04 11:53:33 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 0c05b9bdbfe52ad9b391a28dd26f047715627e0c:

  docs: cgroup-v1: Document the cpuset_v2_mode mount option (2020-04-03 11:42:56 -0400)

----------------------------------------------------------------
Christian Brauner (6):
      cgroup: unify attach permission checking
      cgroup: add cgroup_get_from_file() helper
      cgroup: refactor fork helpers
      cgroup: add cgroup_may_write() helper
      clone3: allow spawning processes into cgroups
      selftests/cgroup: add tests for cloning into cgroups

Daniel Xu (4):
      kernfs: kvmalloc xattr value instead of kmalloc
      kernfs: Add removed_size out param for simple_xattr_set
      kernfs: Add option to enable user xattrs
      cgroupfs: Support user xattrs

Madhuparna Bhowmik (1):
      cgroup.c: Use built-in RCU list checking

Michal Koutný (1):
      cgroup: Clean up css_set task traversal

Prateek Sood (1):
      cpuset: Make cpuset hotplug synchronous

Suren Baghdasaryan (1):
      kselftest/cgroup: add cgroup destruction test

Tejun Heo (3):
      Merge branch 'for-5.6-fixes' into for-5.7
      cgroup: Restructure release_agent_path handling
      Revert "cpuset: Make cpuset hotplug synchronous"

Waiman Long (1):
      docs: cgroup-v1: Document the cpuset_v2_mode mount option

 Documentation/admin-guide/cgroup-v1/cpusets.rst   |  11 +
 fs/kernfs/inode.c                                 |  91 +++++-
 fs/kernfs/kernfs-internal.h                       |   2 +
 fs/xattr.c                                        |  17 +-
 include/linux/cgroup-defs.h                       |   5 +-
 include/linux/cgroup.h                            |  23 +-
 include/linux/kernfs.h                            |  11 +-
 include/linux/sched/task.h                        |   4 +
 include/linux/xattr.h                             |   3 +-
 include/uapi/linux/sched.h                        |   5 +
 kernel/cgroup/cgroup-v1.c                         |  34 +-
 kernel/cgroup/cgroup.c                            | 361 ++++++++++++++++------
 kernel/cgroup/cpuset.c                            |   8 +-
 kernel/cgroup/pids.c                              |  15 +-
 kernel/fork.c                                     |  19 +-
 mm/shmem.c                                        |   2 +-
 tools/testing/selftests/cgroup/Makefile           |   6 +-
 tools/testing/selftests/cgroup/cgroup_util.c      | 126 ++++++++
 tools/testing/selftests/cgroup/cgroup_util.h      |   4 +
 tools/testing/selftests/cgroup/test_core.c        | 177 +++++++++++
 tools/testing/selftests/clone3/clone3_selftests.h |  19 +-
 21 files changed, 795 insertions(+), 148 deletions(-)

-- 
tejun

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

* [GIT PULL] cgroup changes for v5.7-rc1
@ 2020-04-03 15:52 ` Tejun Heo
  0 siblings, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2020-04-03 15:52 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	cgroups-u79uwXL29TY76Z2rM5mHXA, Johannes Weiner, Li Zefan

Hello, Linus.

* Christian extended clone3 so that processes can be spawned into cgroups
  directly. This is not only neat in terms of semantics but also avoids grabbing
  the global cgroup_threadgroup_rwsem for migration.

* Daniel added !root xattr support to cgroupfs. Userland already uses xattrs on
  cgroupfs for bookkeeping. This will allow delegated cgroups to support such
  usages.

* Prateek tried to make cpuset hotplug handling synchronous but that led to
  possible deadlock scenarios. Reverted.

* Other minor changes including release_agent_path handling cleanup.

Thanks.

The following changes since commit 2e5383d7904e60529136727e49629a82058a5607:

  cgroup1: don't call release_agent when it is "" (2020-03-04 11:53:33 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 0c05b9bdbfe52ad9b391a28dd26f047715627e0c:

  docs: cgroup-v1: Document the cpuset_v2_mode mount option (2020-04-03 11:42:56 -0400)

----------------------------------------------------------------
Christian Brauner (6):
      cgroup: unify attach permission checking
      cgroup: add cgroup_get_from_file() helper
      cgroup: refactor fork helpers
      cgroup: add cgroup_may_write() helper
      clone3: allow spawning processes into cgroups
      selftests/cgroup: add tests for cloning into cgroups

Daniel Xu (4):
      kernfs: kvmalloc xattr value instead of kmalloc
      kernfs: Add removed_size out param for simple_xattr_set
      kernfs: Add option to enable user xattrs
      cgroupfs: Support user xattrs

Madhuparna Bhowmik (1):
      cgroup.c: Use built-in RCU list checking

Michal Koutný (1):
      cgroup: Clean up css_set task traversal

Prateek Sood (1):
      cpuset: Make cpuset hotplug synchronous

Suren Baghdasaryan (1):
      kselftest/cgroup: add cgroup destruction test

Tejun Heo (3):
      Merge branch 'for-5.6-fixes' into for-5.7
      cgroup: Restructure release_agent_path handling
      Revert "cpuset: Make cpuset hotplug synchronous"

Waiman Long (1):
      docs: cgroup-v1: Document the cpuset_v2_mode mount option

 Documentation/admin-guide/cgroup-v1/cpusets.rst   |  11 +
 fs/kernfs/inode.c                                 |  91 +++++-
 fs/kernfs/kernfs-internal.h                       |   2 +
 fs/xattr.c                                        |  17 +-
 include/linux/cgroup-defs.h                       |   5 +-
 include/linux/cgroup.h                            |  23 +-
 include/linux/kernfs.h                            |  11 +-
 include/linux/sched/task.h                        |   4 +
 include/linux/xattr.h                             |   3 +-
 include/uapi/linux/sched.h                        |   5 +
 kernel/cgroup/cgroup-v1.c                         |  34 +-
 kernel/cgroup/cgroup.c                            | 361 ++++++++++++++++------
 kernel/cgroup/cpuset.c                            |   8 +-
 kernel/cgroup/pids.c                              |  15 +-
 kernel/fork.c                                     |  19 +-
 mm/shmem.c                                        |   2 +-
 tools/testing/selftests/cgroup/Makefile           |   6 +-
 tools/testing/selftests/cgroup/cgroup_util.c      | 126 ++++++++
 tools/testing/selftests/cgroup/cgroup_util.h      |   4 +
 tools/testing/selftests/cgroup/test_core.c        | 177 +++++++++++
 tools/testing/selftests/clone3/clone3_selftests.h |  19 +-
 21 files changed, 795 insertions(+), 148 deletions(-)

-- 
tejun

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

* Re: [GIT PULL] cgroup changes for v5.7-rc1
  2020-04-03 15:52 ` Tejun Heo
  (?)
@ 2020-04-03 20:50 ` pr-tracker-bot
  -1 siblings, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2020-04-03 20:50 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Linus Torvalds, linux-kernel, cgroups, Johannes Weiner, Li Zefan

The pull request you sent on Fri, 3 Apr 2020 11:52:43 -0400:

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

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

Thank you!

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

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

end of thread, other threads:[~2020-04-03 20:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-03 15:52 [GIT PULL] cgroup changes for v5.7-rc1 Tejun Heo
2020-04-03 15:52 ` Tejun Heo
2020-04-03 20:50 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.