* c/r rebase to 2.6.33-rc5
@ 2010-02-04 17:33 Oren Laadan
[not found] ` <4B6B04E7.9080704-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Oren Laadan @ 2010-02-04 17:33 UTC (permalink / raw)
To: Serge E. Hallyn
Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Dan Smith
I rebased the most recent patchset to 2.6.33, and pushed to
ckpt-v19-rc2.10. only x86-32 is (lightly) tested.
it does not include patches from 1/27 and on. working on it
now.
please review:
* arch-specific parts that I didn't screw up anything.
btw, I moved checkpoint code from mm/ to kernel/
* [dan] network: net/checkpoint.c now uses sock_alloc_file();
there may or may not be a leak of sock_hold().
* [serge] selinux now auto-generates some include files, see
the changes to classmap.h
Oren.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: c/r rebase to 2.6.33-rc5
[not found] ` <4B6B04E7.9080704-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
@ 2010-02-05 1:40 ` Serge E. Hallyn
[not found] ` <20100205014009.GA5474-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Serge E. Hallyn @ 2010-02-05 1:40 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Quoting Oren Laadan (orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org):
>
> I rebased the most recent patchset to 2.6.33, and pushed to
> ckpt-v19-rc2.10. only x86-32 is (lightly) tested.
>
> it does not include patches from 1/27 and on. working on it
> now.
>
> please review:
>
> * arch-specific parts that I didn't screw up anything.
> btw, I moved checkpoint code from mm/ to kernel/
>
> * [dan] network: net/checkpoint.c now uses sock_alloc_file();
> there may or may not be a leak of sock_hold().
>
> * [serge] selinux now auto-generates some include files, see
> the changes to classmap.h
>
> Oren.
For x86-64, I needed the following patch. With this patch, only
the fileio and futex tests failed. Suka is looking into the fileio
failure - Matt you might check the futex tests on whatever arch
you have available...
For s390, I of course still need
"fix 31-bit s390 checkpoint/restart wrappers" for compile with
CONFIG_COMPAT to succeed.
-serge
From 983e6674a72f0f911caddb3304c5d6a8e2e5d354 Mon Sep 17 00:00:00 2001
From: Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Date: Thu, 4 Feb 2010 13:35:15 -0600
Subject: [PATCH 1/1] fix x86-64 checkpoint and restart syscall numbers
Signed-off-by: Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
arch/x86/include/asm/unistd_64.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/include/asm/unistd_64.h b/arch/x86/include/asm/unistd_64.h
index fbac07d..17bacfd 100644
--- a/arch/x86/include/asm/unistd_64.h
+++ b/arch/x86/include/asm/unistd_64.h
@@ -665,9 +665,9 @@ __SYSCALL(__NR_perf_event_open, sys_perf_event_open)
__SYSCALL(__NR_recvmmsg, sys_recvmmsg)
#define __NR_eclone 300
__SYSCALL(__NR_eclone, stub_eclone)
-#define __NR_checkpoint 300
+#define __NR_checkpoint 301
__SYSCALL(__NR_checkpoint, stub_checkpoint)
-#define __NR_restart 301
+#define __NR_restart 302
__SYSCALL(__NR_restart, stub_restart)
#ifndef __NO_STUBS
--
1.6.0.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: c/r rebase to 2.6.33-rc5
[not found] ` <20100205014009.GA5474-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2010-02-05 14:45 ` Oren Laadan
[not found] ` <4B6C2EFA.3050703-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Oren Laadan @ 2010-02-05 14:45 UTC (permalink / raw)
To: Serge E. Hallyn; +Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Serge E. Hallyn wrote:
> Quoting Oren Laadan (orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org):
>> I rebased the most recent patchset to 2.6.33, and pushed to
>> ckpt-v19-rc2.10. only x86-32 is (lightly) tested.
>>
>> it does not include patches from 1/27 and on. working on it
>> now.
>>
>> please review:
>>
>> * arch-specific parts that I didn't screw up anything.
>> btw, I moved checkpoint code from mm/ to kernel/
>>
>> * [dan] network: net/checkpoint.c now uses sock_alloc_file();
>> there may or may not be a leak of sock_hold().
>>
>> * [serge] selinux now auto-generates some include files, see
>> the changes to classmap.h
>>
>> Oren.
>
> For x86-64, I needed the following patch. With this patch, only
> the fileio and futex tests failed. Suka is looking into the fileio
> failure - Matt you might check the futex tests on whatever arch
> you have available...
>
> For s390, I of course still need
> "fix 31-bit s390 checkpoint/restart wrappers" for compile with
> CONFIG_COMPAT to succeed.
Ok, fixed, and pushed to ckpt-v19-rc2.10.
If this is more or less ok, I'll change it to ckpt-v19-rc3 :)
Oren.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: c/r rebase to 2.6.33-rc5
[not found] ` <4B6C2EFA.3050703-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
@ 2010-02-05 14:57 ` Serge E. Hallyn
[not found] ` <20100205145722.GA6685-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Serge E. Hallyn @ 2010-02-05 14:57 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Quoting Oren Laadan (orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org):
>
>
> Serge E. Hallyn wrote:
> > Quoting Oren Laadan (orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org):
> >> I rebased the most recent patchset to 2.6.33, and pushed to
> >> ckpt-v19-rc2.10. only x86-32 is (lightly) tested.
> >>
> >> it does not include patches from 1/27 and on. working on it
> >> now.
> >>
> >> please review:
> >>
> >> * arch-specific parts that I didn't screw up anything.
> >> btw, I moved checkpoint code from mm/ to kernel/
> >>
> >> * [dan] network: net/checkpoint.c now uses sock_alloc_file();
> >> there may or may not be a leak of sock_hold().
> >>
> >> * [serge] selinux now auto-generates some include files, see
> >> the changes to classmap.h
> >>
> >> Oren.
> >
> > For x86-64, I needed the following patch. With this patch, only
> > the fileio and futex tests failed. Suka is looking into the fileio
> > failure - Matt you might check the futex tests on whatever arch
> > you have available...
> >
> > For s390, I of course still need
> > "fix 31-bit s390 checkpoint/restart wrappers" for compile with
> > CONFIG_COMPAT to succeed.
>
> Ok, fixed, and pushed to ckpt-v19-rc2.10.
> If this is more or less ok, I'll change it to ckpt-v19-rc3 :)
My git tree isn't happy with whatever rebasing you did. Can
you push a ckpt-v19-rc2.11 tag or just ckpt-v19-rc3?
I haven't looked at the selinux issue at all yet btw, and I'd
like to hear if anyone has figured out the issue with a pipe
being treated as Unlinked file in the robust futex testcase.
Matt?
-serge
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: c/r rebase to 2.6.33-rc5
[not found] ` <20100205145722.GA6685-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2010-02-05 16:33 ` Serge E. Hallyn
0 siblings, 0 replies; 5+ messages in thread
From: Serge E. Hallyn @ 2010-02-05 16:33 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Quoting Serge E. Hallyn (serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org):
> I haven't looked at the selinux issue at all yet btw, and I'd
SELinux tests pass, as do Smack tests. No changes needed.
Thanks!
-serge
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-02-05 16:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-04 17:33 c/r rebase to 2.6.33-rc5 Oren Laadan
[not found] ` <4B6B04E7.9080704-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2010-02-05 1:40 ` Serge E. Hallyn
[not found] ` <20100205014009.GA5474-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-02-05 14:45 ` Oren Laadan
[not found] ` <4B6C2EFA.3050703-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2010-02-05 14:57 ` Serge E. Hallyn
[not found] ` <20100205145722.GA6685-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-02-05 16:33 ` Serge E. Hallyn
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.