Blame SOURCES/2004-glibc-msgctl-semctl-shmctl-backport-workaround.patch

9d54c7
Index: strace-5.12/tests/ipc_msg.c
9d54c7
===================================================================
9d54c7
--- strace-5.12.orig/tests/ipc_msg.c	2021-05-18 13:30:38.440896349 +0200
9d54c7
+++ strace-5.12/tests/ipc_msg.c	2021-05-18 13:30:04.628198661 +0200
9d54c7
@@ -11,6 +11,7 @@
9d54c7
 #include <errno.h>
9d54c7
 #include <stdio.h>
9d54c7
 #include <stdlib.h>
9d54c7
+#include <linux/version.h> /* For RHEL_* macros */
9d54c7
 #include <sys/msg.h>
9d54c7
 
9d54c7
 #include "xlat.h"
9d54c7
@@ -55,8 +56,11 @@
9d54c7
  * Starting with commit glibc-2.32.9000-149-gbe9b0b9a012780a403a2,
9d54c7
  * glibc skips msgctl syscall invocations and returns EINVAL
9d54c7
  * for invalid msgctl commands.
9d54c7
+ * It has been backported into glic-2.28-153 in RHEL 8.5.
9d54c7
  */
9d54c7
-#if GLIBC_PREREQ_GE(2, 32)
9d54c7
+#if GLIBC_PREREQ_GE(2, 32) || \
9d54c7
+ (defined RHEL_RELEASE_VERSION && \
9d54c7
+  (RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8, 5)))
9d54c7
 # define TEST_MSGCTL_BOGUS_CMD 0
9d54c7
 #endif
9d54c7
 
9d54c7
Index: strace-5.12/tests/ipc_shm.c
9d54c7
===================================================================
9d54c7
--- strace-5.12.orig/tests/ipc_shm.c	2021-05-18 13:30:22.373040008 +0200
9d54c7
+++ strace-5.12/tests/ipc_shm.c	2021-05-18 13:30:00.835232573 +0200
9d54c7
@@ -11,6 +11,7 @@
9d54c7
 #include <errno.h>
9d54c7
 #include <stdio.h>
9d54c7
 #include <stdlib.h>
9d54c7
+#include <linux/version.h> /* For RHEL_* macros */
9d54c7
 #include <sys/shm.h>
9d54c7
 
9d54c7
 #ifndef SHM_HUGE_SHIFT
9d54c7
@@ -45,8 +46,11 @@
9d54c7
  * Starting with commit glibc-2.32.9000-207-g9ebaabeaac1a96b0d91f,
9d54c7
  * glibc skips shmctl syscall invocations and returns EINVAL
9d54c7
  * for invalid shmctl commands.
9d54c7
+ * It has been backported into glic-2.28-153 in RHEL 8.5.
9d54c7
  */
9d54c7
-#if GLIBC_PREREQ_GE(2, 32)
9d54c7
+#if GLIBC_PREREQ_GE(2, 32) || \
9d54c7
+ (defined RHEL_RELEASE_VERSION && \
9d54c7
+  (RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8, 5)))
9d54c7
 # define TEST_SHMCTL_BOGUS_CMD 0
9d54c7
 #endif
9d54c7
 
9d54c7
Index: strace-5.12/tests/ipc_sem.c
9d54c7
===================================================================
9d54c7
--- strace-5.12.orig/tests/ipc_sem.c	2020-12-31 09:00:00.000000000 +0100
9d54c7
+++ strace-5.12/tests/ipc_sem.c	2021-05-18 13:56:51.453832392 +0200
9d54c7
@@ -12,6 +12,7 @@
9d54c7
 #include <stdio.h>
9d54c7
 #include <stdlib.h>
9d54c7
 #include <string.h>
9d54c7
+#include <linux/version.h> /* For RHEL_* macros */
9d54c7
 #include <sys/sem.h>
9d54c7
 
9d54c7
 #include "xlat.h"
9d54c7
@@ -27,8 +28,11 @@
9d54c7
  * Starting with commit glibc-2.32.9000-147-ga16d2abd496bd974a882,
9d54c7
  * glibc skips semctl syscall invocations and returns EINVAL
9d54c7
  * for invalid semctl commands.
9d54c7
+ * It has been backported into glic-2.28-153 in RHEL 8.5.
9d54c7
  */
9d54c7
-#if GLIBC_PREREQ_GE(2, 32)
9d54c7
+#if GLIBC_PREREQ_GE(2, 32) || \
9d54c7
+ (defined RHEL_RELEASE_VERSION && \
9d54c7
+  (RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8, 5)))
9d54c7
 # define TEST_SEMCTL_BOGUS_CMD 0
9d54c7
 #endif
9d54c7