From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758706AbdKOTD6 (ORCPT ); Wed, 15 Nov 2017 14:03:58 -0500 Received: from mail-qt0-f196.google.com ([209.85.216.196]:51093 "EHLO mail-qt0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753427AbdKOTDv (ORCPT ); Wed, 15 Nov 2017 14:03:51 -0500 X-Google-Smtp-Source: AGs4zMYGmjgkW70KiZB6vi8kspENT0btPiEFQNGQxSJBwSFDC0UTRxbW1aQ1hT3XAPQsVFgrlLJk6Q== Date: Wed, 15 Nov 2017 11:03:47 -0800 From: Tejun Heo To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, cgroups@vger.kernel.org, Li Zefan , Johannes Weiner Subject: [GIT PULL] cgroup changes for v4.15-rc1 Message-ID: <20171115190347.GB983427@devbig577.frc2.facebook.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Linus. cgroup changes for v4.15-rc1. cgroup2 cpu controller support is finally merged. * Basic cpu statistics support to allow monitoring by default without the CPU controller enabled. * cgroup2 cpu controller support. * /sys/kernel/cgroup files to help dealing with new / optional features. The merge causes conflicts in two files - kernel/cgroup/Makefile and kernel/cgorup/cpuacct.h. Both are trivial conflicts from the license identifier addition. Makefile resolution is trivial and cpuacct.h no longer exists. Please expect another merge conflict with the bpf changes. It's caused by two additions to the cgroup_create() error handling path. The resolution in the linux-next is correct. https://marc.info/?l=linux-next&m=150757433124201&w=2 Thanks. The following changes since commit e19b205be43d11bff638cad4487008c48d21c103: Linux 4.14-rc2 (2017-09-24 16:38:56 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-4.15 for you to fetch changes up to 5f2e673405b742be64e7c3604ed4ed3ac14f35ce: cgroup: export list of cgroups v2 features using sysfs (2017-11-06 12:01:57 -0800) ---------------------------------------------------------------- Chao Yu (1): MAINTAINERS: relocate cpuset.c Roman Gushchin (2): cgroup: export list of delegatable control files using sysfs cgroup: export list of cgroups v2 features using sysfs Tejun Heo (9): sched/cputime: Expose cputime_adjust() cpuacct: Introduce cgroup_account_cputime[_field]() cgroup: Implement cgroup2 basic CPU usage accounting cgroup: statically initialize init_css_set->dfl_cgrp sched/cputime: Add dummy cputime_adjust() implementation for CONFIG_VIRT_CPU_ACCOUNTING_NATIVE sched: Misc preps for cgroup unified hierarchy interface sched: Implement interface for cgroup unified hierarchy cgroup, sched: Move basic cpu stats from cgroup.stat to cpu.stat cgroup: mark @cgrp __maybe_unused in cpu_stat_show() Documentation/cgroup-v2.txt | 42 ++--- MAINTAINERS | 2 +- include/linux/cgroup-defs.h | 59 +++++++ include/linux/cgroup.h | 58 +++++++ include/linux/sched/cputime.h | 3 +- kernel/cgroup/Makefile | 2 +- kernel/cgroup/cgroup-internal.h | 9 ++ kernel/cgroup/cgroup.c | 157 ++++++++++++++++++- kernel/cgroup/stat.c | 334 ++++++++++++++++++++++++++++++++++++++++ kernel/sched/core.c | 174 ++++++++++++++++++++- kernel/sched/cpuacct.h | 17 -- kernel/sched/cputime.c | 14 +- kernel/sched/deadline.c | 2 +- kernel/sched/fair.c | 2 +- kernel/sched/rt.c | 2 +- kernel/sched/sched.h | 2 +- kernel/sched/stop_task.c | 2 +- 17 files changed, 821 insertions(+), 60 deletions(-) create mode 100644 kernel/cgroup/stat.c delete mode 100644 kernel/sched/cpuacct.h -- tejun