From: Kamalesh Babulal Date: Tue, 8 Feb 2022 16:44:36 +0000 (-0700) Subject: libcgroup-internal.h: remove FIXME comment X-Git-Tag: v3.0~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6980b4415237c6ff08b82e77e06c93f3ffc5ef3d;p=thirdparty%2Flibcgroup.git 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 --- 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)