From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Serge E. Hallyn" Subject: [PATCH 1/2] s390: fix checkpoint and restart compat wrappers Date: Mon, 15 Jun 2009 12:04:43 -0500 Message-ID: <20090615170443.GA14808@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 They need to actually jump to the real syscall. Though c/r from 31-bit compat is completely untested and should maybe just be disabled for now... Signed-off-by: Serge E. Hallyn --- arch/s390/kernel/compat_wrapper.S | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index ece87c8..c2228b2 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S @@ -1829,9 +1829,11 @@ sys_checkpoint_wrapper: lgfr %r2,%r2 # pid_t lgfr %r3,%r3 # int llgfr %r4,%r4 # unsigned long + jg compat_sys_checkpoint .globl sys_restore_wrapper sys_restore_wrapper: lgfr %r2,%r2 # int lgfr %r3,%r3 # int llgfr %r4,%r4 # unsigned long + jg compat_sys_restore -- 1.6.1