Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'cgroup-for-6.19-rc5-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup

Pull cgroup fixes from Tejun Heo:

- Add Chen Ridong as cpuset reviewer

- Add SPDX license identifiers to cgroup files that were missing them

* tag 'cgroup-for-6.19-rc5-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
kernel: cgroup: Add LGPL-2.1 SPDX license ID to legacy_freezer.c
kernel: cgroup: Add SPDX-License-Identifier lines
MAINTAINERS: Add Chen Ridong as cpuset reviewer

+4 -16
+1
MAINTAINERS
··· 6421 6421 6422 6422 CONTROL GROUP - CPUSET 6423 6423 M: Waiman Long <longman@redhat.com> 6424 + R: Chen Ridong <chenridong@huaweicloud.com> 6424 6425 L: cgroups@vger.kernel.org 6425 6426 S: Maintained 6426 6427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
+1 -4
kernel/cgroup/cgroup.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Generic process-grouping system. 3 4 * ··· 21 20 * 2003-10-22 Updates by Stephen Hemminger. 22 21 * 2004 May-July Rework by Paul Jackson. 23 22 * --------------------------------------------------- 24 - * 25 - * This file is subject to the terms and conditions of the GNU General Public 26 - * License. See the file COPYING in the main directory of the Linux 27 - * distribution for more details. 28 23 */ 29 24 30 25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+1 -4
kernel/cgroup/cpuset.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * kernel/cpuset.c 3 4 * ··· 17 16 * 2006 Rework by Paul Menage to use generic cgroups 18 17 * 2008 Rework of the scheduler domains and CPU hotplug handling 19 18 * by Max Krasnyansky 20 - * 21 - * This file is subject to the terms and conditions of the GNU General Public 22 - * License. See the file COPYING in the main directory of the Linux 23 - * distribution for more details. 24 19 */ 25 20 #include "cpuset-internal.h" 26 21
+1 -8
kernel/cgroup/legacy_freezer.c
··· 1 + // SPDX-License-Identifier: LGPL-2.1 1 2 /* 2 3 * cgroup_freezer.c - control group freezer subsystem 3 4 * 4 5 * Copyright IBM Corporation, 2007 5 6 * 6 7 * Author : Cedric Le Goater <clg@fr.ibm.com> 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms of version 2.1 of the GNU Lesser General Public License 10 - * as published by the Free Software Foundation. 11 - * 12 - * This program is distributed in the hope that it would be useful, but 13 - * WITHOUT ANY WARRANTY; without even the implied warranty of 14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 15 8 */ 16 9 17 10 #include <linux/export.h>