From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756059AbYDIXKH (ORCPT ); Wed, 9 Apr 2008 19:10:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754232AbYDIXJ4 (ORCPT ); Wed, 9 Apr 2008 19:09:56 -0400 Received: from mx1.redhat.com ([66.187.233.31]:60717 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752981AbYDIXJ4 (ORCPT ); Wed, 9 Apr 2008 19:09:56 -0400 Date: Wed, 9 Apr 2008 19:07:34 -0400 From: Jakub Jelinek To: sukadev@us.ibm.com Cc: Andrew Morton , clg@fr.ibm.com, serue@us.ibm.com, "David C. Hansen" , Pavel Emelyanov , Containers , linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/3] add the clone64() and unshare64() syscalls Message-ID: <20080409230733.GR20478@devserv.devel.redhat.com> Reply-To: Jakub Jelinek References: <20080409222611.GA28087@us.ibm.com> <20080409223459.GC28267@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080409223459.GC28267@us.ibm.com> User-Agent: Mutt/1.4.1i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 09, 2008 at 03:34:59PM -0700, sukadev@us.ibm.com wrote: > From: Cedric Le Goater > Subject: [PATCH 3/3] add the clone64() and unshare64() syscalls > > This patch adds 2 new syscalls : > > long sys_clone64(unsigned long flags_high, unsigned long flags_low, > unsigned long newsp); > > long sys_unshare64(unsigned long flags_high, unsigned long flags_low); Can you explain why are you adding it for 64-bit arches too? unsigned long is there already 64-bit, and both sys_clone and sys_unshare have unsigned long flags, rather than unsigned int. Jakub