From: Hao Luo <haoluo@xxxxxxxxxx> There is already a cgroup_get_from_id() in the !CONFIG_CGROUPS case, let's have a matching cgroup_put() in !CONFIG_CGROUPS too. Signed-off-by: Hao Luo <haoluo@xxxxxxxxxx> Signed-off-by: Yosry Ahmed <yosryahmed@xxxxxxxxxx> --- include/linux/cgroup.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 0d1ada8968d75..7485a2f939119 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -757,6 +757,9 @@ static inline struct cgroup *cgroup_get_from_id(u64 id) { return NULL; } + +static inline void cgroup_put(struct cgroup *cgrp) +{} #endif /* !CONFIG_CGROUPS */ #ifdef CONFIG_CGROUPS -- 2.36.1.476.g0c4daa206d-goog