Re: [Patch v3 1/2] cgroup: sev: Add misc cgroup controller
From: Jacob Pan <hidden>
Date: 2021-03-19 21:26:17
Also in:
cgroups, kvm, lkml
From: Jacob Pan <hidden>
Date: 2021-03-19 21:26:17
Also in:
cgroups, kvm, lkml
Hi Vipin, On Thu, 4 Mar 2021 15:19:45 -0800, Vipin Sharma [off-list ref] wrote:
+/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Miscellaneous cgroup controller. + * + * Copyright 2020 Google LLC + * Author: Vipin Sharma [off-list ref] + */ +#ifndef _MISC_CGROUP_H_ +#define _MISC_CGROUP_H_ +
nit: should you do #include <linux/cgroup.h>? Otherwise, css may be undefined.
+/** + * Types of misc cgroup entries supported by the host. + */
Thanks, Jacob