]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
rtla: Use standard exit codes for result enum
authorWander Lairson Costa <wander@redhat.com>
Tue, 6 Jan 2026 11:49:44 +0000 (08:49 -0300)
committerTomas Glozar <tglozar@redhat.com>
Wed, 7 Jan 2026 14:57:55 +0000 (15:57 +0100)
The result enum defines custom values for PASSED, ERROR, and FAILED.
These values correspond to standard exit codes EXIT_SUCCESS and
EXIT_FAILURE.

Update the enum to use the standard macros EXIT_SUCCESS and
EXIT_FAILURE to improve readability and adherence to standard C
practices.

The FAILED value is implicitly assigned EXIT_FAILURE + 1, so there
is no need to assign an explicit value.

Signed-off-by: Wander Lairson Costa <wander@redhat.com>
Link: https://lore.kernel.org/r/20260106133655.249887-9-wander@redhat.com
Signed-off-by: Tomas Glozar <tglozar@redhat.com>
tools/tracing/rtla/src/utils.h

index 974f7e0188c0a4bd35aa4200665fd606ab430720..f7c2a52a0ab546e951e625bbf358847987825d6b 100644 (file)
@@ -4,6 +4,7 @@
 #include <time.h>
 #include <sched.h>
 #include <stdbool.h>
+#include <stdlib.h>
 
 /*
  * '18446744073709551615\0'
@@ -88,7 +89,7 @@ __attribute__((__warn_unused_result__)) int strtoi(const char *s, int *res);
 #define ns_to_per(total, part) ((part * 100) / (double)total)
 
 enum result {
-       PASSED = 0, /* same as EXIT_SUCCESS */
-       ERROR = 1,  /* same as EXIT_FAILURE, an error in arguments */
-       FAILED = 2, /* test hit the stop tracing condition */
+       PASSED  = EXIT_SUCCESS,
+       ERROR   = EXIT_FAILURE,
+       FAILED, /* test hit the stop tracing condition */
 };