All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-01 20:55 ` Tejun Heo
  0 siblings, 0 replies; 8+ messages in thread
From: Tejun Heo @ 2021-07-01 20:55 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: cgroups, linux-kernel

Hello, Linus.

* cgroup.kill is added which implements atomic killing of the whole subtree.
  Down the line, this should be able to replace the multiple userland
  implementations of "keep killing till empty".

* PSI can now be turned off at boot time to avoid overhead for
  configurations which don't care about PSI.

Thank you.

The following changes since commit 08b2b6fdf6b26032f025084ce2893924a0cdb4a2:

  cgroup: fix spelling mistakes (2021-05-24 12:45:26 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 3958e2d0c34e18c41b60dc01832bd670a59ef70f:

  cgroup: make per-cgroup pressure stall tracking configurable (2021-06-08 14:59:02 -0400)

----------------------------------------------------------------
Christian Brauner (5):
      cgroup: introduce cgroup.kill
      docs/cgroup: add entry for cgroup.kill
      tests/cgroup: use cgroup.kill in cg_killall()
      tests/cgroup: move cg_wait_for(), cg_prepare_for_wait()
      tests/cgroup: test cgroup.kill

Roman Gushchin (1):
      cgroup: inline cgroup_task_freeze()

Suren Baghdasaryan (1):
      cgroup: make per-cgroup pressure stall tracking configurable

Tejun Heo (1):
      Merge branch 'for-5.13-fixes' into for-5.14

Yang Li (1):
      cgroup: Fix kernel-doc

 Documentation/admin-guide/cgroup-v2.rst         |  15 ++
 Documentation/admin-guide/kernel-parameters.txt |   9 +-
 include/linux/cgroup-defs.h                     |   4 +
 include/linux/cgroup.h                          |  25 +-
 kernel/cgroup/cgroup.c                          | 180 ++++++++++++--
 kernel/cgroup/rstat.c                           |   2 +-
 kernel/sched/psi.c                              |  30 +--
 tools/testing/selftests/cgroup/.gitignore       |   3 +-
 tools/testing/selftests/cgroup/Makefile         |   2 +
 tools/testing/selftests/cgroup/cgroup_util.c    |  51 ++++
 tools/testing/selftests/cgroup/cgroup_util.h    |   2 +
 tools/testing/selftests/cgroup/test_freezer.c   |  57 -----
 tools/testing/selftests/cgroup/test_kill.c      | 297 ++++++++++++++++++++++++
 13 files changed, 569 insertions(+), 108 deletions(-)
 create mode 100644 tools/testing/selftests/cgroup/test_kill.c

-- 
tejun

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

* [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-01 20:55 ` Tejun Heo
  0 siblings, 0 replies; 8+ messages in thread
From: Tejun Heo @ 2021-07-01 20:55 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: cgroups-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA

Hello, Linus.

* cgroup.kill is added which implements atomic killing of the whole subtree.
  Down the line, this should be able to replace the multiple userland
  implementations of "keep killing till empty".

* PSI can now be turned off at boot time to avoid overhead for
  configurations which don't care about PSI.

Thank you.

The following changes since commit 08b2b6fdf6b26032f025084ce2893924a0cdb4a2:

  cgroup: fix spelling mistakes (2021-05-24 12:45:26 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 3958e2d0c34e18c41b60dc01832bd670a59ef70f:

  cgroup: make per-cgroup pressure stall tracking configurable (2021-06-08 14:59:02 -0400)

----------------------------------------------------------------
Christian Brauner (5):
      cgroup: introduce cgroup.kill
      docs/cgroup: add entry for cgroup.kill
      tests/cgroup: use cgroup.kill in cg_killall()
      tests/cgroup: move cg_wait_for(), cg_prepare_for_wait()
      tests/cgroup: test cgroup.kill

Roman Gushchin (1):
      cgroup: inline cgroup_task_freeze()

Suren Baghdasaryan (1):
      cgroup: make per-cgroup pressure stall tracking configurable

Tejun Heo (1):
      Merge branch 'for-5.13-fixes' into for-5.14

Yang Li (1):
      cgroup: Fix kernel-doc

 Documentation/admin-guide/cgroup-v2.rst         |  15 ++
 Documentation/admin-guide/kernel-parameters.txt |   9 +-
 include/linux/cgroup-defs.h                     |   4 +
 include/linux/cgroup.h                          |  25 +-
 kernel/cgroup/cgroup.c                          | 180 ++++++++++++--
 kernel/cgroup/rstat.c                           |   2 +-
 kernel/sched/psi.c                              |  30 +--
 tools/testing/selftests/cgroup/.gitignore       |   3 +-
 tools/testing/selftests/cgroup/Makefile         |   2 +
 tools/testing/selftests/cgroup/cgroup_util.c    |  51 ++++
 tools/testing/selftests/cgroup/cgroup_util.h    |   2 +
 tools/testing/selftests/cgroup/test_freezer.c   |  57 -----
 tools/testing/selftests/cgroup/test_kill.c      | 297 ++++++++++++++++++++++++
 13 files changed, 569 insertions(+), 108 deletions(-)
 create mode 100644 tools/testing/selftests/cgroup/test_kill.c

-- 
tejun

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:25   ` Linus Torvalds
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Torvalds @ 2021-07-02  0:25 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Cgroups, Linux Kernel Mailing List

On Thu, Jul 1, 2021 at 1:55 PM Tejun Heo <tj@kernel.org> wrote:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-5.14

I've pulled it, but let me vent about this history a bit.

Look at commit c2a11971549b ("Merge branch 'for-5.13-fixes' into for-5.14").

Now tell me how that commit explains why it exists.

Merge commits need commit messages too.

In particular, they need commit messages that *explain* why they exist
in the first place, not just a one-liner that says what it does (and
does so badly at that).

                    Linus

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:25   ` Linus Torvalds
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Torvalds @ 2021-07-02  0:25 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Cgroups, Linux Kernel Mailing List

On Thu, Jul 1, 2021 at 1:55 PM Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-5.14

I've pulled it, but let me vent about this history a bit.

Look at commit c2a11971549b ("Merge branch 'for-5.13-fixes' into for-5.14").

Now tell me how that commit explains why it exists.

Merge commits need commit messages too.

In particular, they need commit messages that *explain* why they exist
in the first place, not just a one-liner that says what it does (and
does so badly at that).

                    Linus

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:32     ` Tejun Heo
  0 siblings, 0 replies; 8+ messages in thread
From: Tejun Heo @ 2021-07-02  0:32 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Cgroups, Linux Kernel Mailing List

Hello,

On Thu, Jul 01, 2021 at 05:25:59PM -0700, Linus Torvalds wrote:
> On Thu, Jul 1, 2021 at 1:55 PM Tejun Heo <tj@kernel.org> wrote:
> >
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-5.14
> 
> I've pulled it, but let me vent about this history a bit.
> 
> Look at commit c2a11971549b ("Merge branch 'for-5.13-fixes' into for-5.14").
> 
> Now tell me how that commit explains why it exists.
> 
> Merge commits need commit messages too.
> 
> In particular, they need commit messages that *explain* why they exist
> in the first place, not just a one-liner that says what it does (and
> does so badly at that).

for-5.13-fixes had comment updates across the file and I pulled them into
for-5.14 to avoid trivial context conflicts down the line. Yeah, I should
have commented on the rationale. Will add explanations from now on.

Thanks.

-- 
tejun

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:32     ` Tejun Heo
  0 siblings, 0 replies; 8+ messages in thread
From: Tejun Heo @ 2021-07-02  0:32 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Cgroups, Linux Kernel Mailing List

Hello,

On Thu, Jul 01, 2021 at 05:25:59PM -0700, Linus Torvalds wrote:
> On Thu, Jul 1, 2021 at 1:55 PM Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> >
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-5.14
> 
> I've pulled it, but let me vent about this history a bit.
> 
> Look at commit c2a11971549b ("Merge branch 'for-5.13-fixes' into for-5.14").
> 
> Now tell me how that commit explains why it exists.
> 
> Merge commits need commit messages too.
> 
> In particular, they need commit messages that *explain* why they exist
> in the first place, not just a one-liner that says what it does (and
> does so badly at that).

for-5.13-fixes had comment updates across the file and I pulled them into
for-5.14 to avoid trivial context conflicts down the line. Yeah, I should
have commented on the rationale. Will add explanations from now on.

Thanks.

-- 
tejun

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:46   ` pr-tracker-bot-DgEjT+Ai2ygdnm+yROfE0A
  0 siblings, 0 replies; 8+ messages in thread
From: pr-tracker-bot @ 2021-07-02  0:46 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Linus Torvalds, cgroups, linux-kernel

The pull request you sent on Thu, 1 Jul 2021 10:55:40 -1000:

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

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

Thank you!

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

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

* Re: [GIT PULL] cgroup changes for v5.14-rc1
@ 2021-07-02  0:46   ` pr-tracker-bot-DgEjT+Ai2ygdnm+yROfE0A
  0 siblings, 0 replies; 8+ messages in thread
From: pr-tracker-bot-DgEjT+Ai2ygdnm+yROfE0A @ 2021-07-02  0:46 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Linus Torvalds, cgroups-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

The pull request you sent on Thu, 1 Jul 2021 10:55:40 -1000:

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

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

Thank you!

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

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

end of thread, other threads:[~2021-07-02  0:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01 20:55 [GIT PULL] cgroup changes for v5.14-rc1 Tejun Heo
2021-07-01 20:55 ` Tejun Heo
2021-07-02  0:25 ` Linus Torvalds
2021-07-02  0:25   ` Linus Torvalds
2021-07-02  0:32   ` Tejun Heo
2021-07-02  0:32     ` Tejun Heo
2021-07-02  0:46 ` pr-tracker-bot
2021-07-02  0:46   ` pr-tracker-bot-DgEjT+Ai2ygdnm+yROfE0A

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.