Blame SOURCES/0012-Replace-syscall-__NR_clone-.-with-clone.patch

f22e83
From 0c3a1123c391995ab46cfde603fa025ff180a819 Mon Sep 17 00:00:00 2001
f22e83
From: Martin Sehnoutka <msehnout@redhat.com>
f22e83
Date: Wed, 7 Sep 2016 11:43:54 +0200
f22e83
Subject: [PATCH 12/59] Replace syscall(__NR_clone ..) with clone ()
f22e83
f22e83
in order to fix incorrect order of params on s390 arch
f22e83
---
f22e83
 sysdeputil.c | 4 ++--
f22e83
 1 file changed, 2 insertions(+), 2 deletions(-)
f22e83
f22e83
diff --git a/sysdeputil.c b/sysdeputil.c
f22e83
index b2782da..3bbabaa 100644
f22e83
--- a/sysdeputil.c
f22e83
+++ b/sysdeputil.c
f22e83
@@ -1306,7 +1306,7 @@ vsf_sysutil_fork_isolate_failok()
f22e83
   static int cloneflags_work = 1;
f22e83
   if (cloneflags_work)
f22e83
   {
f22e83
-    int ret = syscall(__NR_clone, CLONE_NEWPID | CLONE_NEWIPC | SIGCHLD, NULL);
f22e83
+    int ret = clone(NULL, NULL, CLONE_NEWPID | CLONE_NEWIPC | SIGCHLD, NULL);
f22e83
     if (ret != -1 || (errno != EINVAL && errno != EPERM))
f22e83
     {
f22e83
       if (ret == 0)
f22e83
@@ -1328,7 +1328,7 @@ vsf_sysutil_fork_newnet()
f22e83
   static int cloneflags_work = 1;
f22e83
   if (cloneflags_work)
f22e83
   {
f22e83
-    int ret = syscall(__NR_clone, CLONE_NEWNET | SIGCHLD, NULL);
f22e83
+    int ret = clone(NULL, NULL, CLONE_NEWNET | SIGCHLD, NULL);
f22e83
     if (ret != -1 || (errno != EINVAL && errno != EPERM))
f22e83
     {
f22e83
       if (ret == 0)
f22e83
-- 
f22e83
2.14.4
f22e83