From 6980b4415237c6ff08b82e77e06c93f3ffc5ef3d Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Tue, 8 Feb 2022 09:44:36 -0700 Subject: [PATCH] libcgroup-internal.h: remove FIXME comment As per Linux Kernel uidgid.h file, that represents internal Kernel types for uids/gids. Initialized invalid uids/gids to -1: #define INVALID_UID KUIDT_INIT(-1) #define INVALID_GID KGIDT_INIT(-1) initializing them to -1 is a valid, remove the FIXME comment that says otherwise. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- src/libcgroup-internal.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcgroup-internal.h b/src/libcgroup-internal.h index e704adae..ac880ec5 100644 --- a/src/libcgroup-internal.h +++ b/src/libcgroup-internal.h @@ -48,7 +48,6 @@ extern "C" { #define CG_HIER_MAX CG_CONTROLLER_MAX /* Definitions for the uid and gid members of a cgroup_rules */ -/* FIXME: These really should not be negative values */ #define CGRULE_INVALID ((uid_t) -1) #define CGRULE_WILD ((uid_t) -2) -- 2.47.2