From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Serge E. Hallyn" Subject: [PATCH user-cr] s390: define struct pid_set Date: Wed, 16 Sep 2009 22:47:03 -0500 Message-ID: <20090917034703.GA25290@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: Linux Containers List-Id: containers.vger.kernel.org Assume the definition was lost in pulling this code out of mktree.c. Signed-off-by: Serge E. Hallyn --- clone_s390x.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/clone_s390x.c b/clone_s390x.c index 39d12e5..661a5c4 100644 --- a/clone_s390x.c +++ b/clone_s390x.c @@ -24,6 +24,12 @@ */ #if defined(__NR_clone_with_pids) +/* this really belongs to some kernel header ! */ +struct pid_set { + int num_pids; + pid_t *pids; +}; + /* (see: http://lkml.indiana.edu/hypermail/linux/kernel/9604.3/0204.html) */ #define do_clone_with_pids(stack, flags, ptid, ctid, setp) ({ \ @@ -47,7 +53,7 @@ }) int clone_with_pids(int (*fn)(void *), void *child_stack, int flags, - struct target_pid_set *target_pids, void *arg) + struct pid_set *target_pids, void *arg) { long retval; retval = do_clone_with_pids(child_stack, flags, NULL, NULL, -- 1.6.1.1