Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753701AbYJVJZU (ORCPT ); Wed, 22 Oct 2008 05:25:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751963AbYJVJZH (ORCPT ); Wed, 22 Oct 2008 05:25:07 -0400 Received: from bohort.kerlabs.com ([62.160.40.57]:42612 "EHLO bohort.kerlabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751891AbYJVJZG (ORCPT ); Wed, 22 Oct 2008 05:25:06 -0400 Date: Wed, 22 Oct 2008 11:25:02 +0200 From: Louis Rilling To: Andrey Mirkin Cc: devel@openvz.org, Pavel Emelyanov , Cedric Le Goater , containers@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [Devel] Re: [PATCH 08/10] Introduce functions to restart a process Message-ID: <20081022092502.GW15171@hawkmoon.kerlabs.com> Reply-To: Louis.Rilling@kerlabs.com References: <1224285098-573-1-git-send-email-major@openvz.org> <1224285098-573-9-git-send-email-major@openvz.org> <48FC4E0C.7050008@fr.ibm.com> <200810221249.55600.major@openvz.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=_bohort-20975-1224667358-0001-2" Content-Disposition: inline In-Reply-To: <200810221249.55600.major@openvz.org> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3200 Lines: 102 This is a MIME-formatted message. If you see this text it means that your E-mail software does not support MIME-formatted messages. --=_bohort-20975-1224667358-0001-2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 22, 2008 at 12:49:54PM +0400, Andrey Mirkin wrote: > On Monday 20 October 2008 13:23 Cedric Le Goater wrote: > > Hello Andrey ! > > > > > diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S > > > index 109792b..a4848a3 100644 > > > --- a/arch/x86/kernel/entry_32.S > > > +++ b/arch/x86/kernel/entry_32.S > > > @@ -225,6 +225,7 @@ ENTRY(ret_from_fork) > > > GET_THREAD_INFO(%ebp) > > > popl %eax > > > CFI_ADJUST_CFA_OFFSET -4 > > > +ret_from_fork_tail: > > > pushl $0x0202 # Reset kernel eflags > > > CFI_ADJUST_CFA_OFFSET 4 > > > popfl > > > @@ -233,6 +234,26 @@ ENTRY(ret_from_fork) > > > CFI_ENDPROC > > > END(ret_from_fork) > > > > > > +ENTRY(i386_ret_from_resume) > > > + CFI_STARTPROC > > > + pushl %eax > > > + CFI_ADJUST_CFA_OFFSET 4 > > > + call schedule_tail > > > + GET_THREAD_INFO(%ebp) > > > + popl %eax > > > + CFI_ADJUST_CFA_OFFSET -4 > > > + movl (%esp), %eax > > > + testl %eax, %eax > > > + jz 1f > > > + pushl %esp > > > + call *%eax > > > + addl $4, %esp > > > +1: > > > + addl $256, %esp > > > + jmp ret_from_fork_tail > > > + CFI_ENDPROC > > > +END(i386_ret_from_resume) > > > > Could you explain why you need to do this > > > > call *%eax > > > > is it related to the freezer code ? >=20 > It is not related to the freezer code actually. > That is needed to restart syscalls. Right now I don't have a code in my= =20 > patchset which restarts a syscall, but later I plan to add it. > In OpenVZ checkpointing we restart syscalls if process was caught in sysc= all=20 > during checkpointing. Do you checkpoint uninterruptible syscalls as well? If only interruptible syscalls are checkpointed, I'd say that either this syscall uses ERESTARTSY= S or ERESTART_RESTARTBLOCK, and then signal handling code already does the trick= , or this syscall does not restart itself when interrupted, and well, this is li= fe, userspace just sees -EINTR, which is allowed by the syscall spec. Actually this is how we checkpoint/migrate tasks in interruptible syscalls = in Kerrighed and this works. Louis --=20 Dr Louis Rilling Kerlabs Skype: louis.rilling Batiment Germanium Phone: (+33|0) 6 80 89 08 23 80 avenue des Buttes de Coesmes http://www.kerlabs.com/ 35700 Rennes --=_bohort-20975-1224667358-0001-2 Content-Type: application/pgp-signature; name="signature.asc" Content-Transfer-Encoding: 7bit Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFI/vFuVKcRuvQ9Q1QRAjIRAKCoR0VUnHwiEJ57zm6Vw/5IJsx9xACgi7+U gM14Y8eKgo+xAz7qEGvFElo= =ymRV -----END PGP SIGNATURE----- --=_bohort-20975-1224667358-0001-2-- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/