From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail172.messagelabs.com (mail172.messagelabs.com [216.82.254.3]) by kanga.kvack.org (Postfix) with SMTP id 71EDC8D0039 for ; Sat, 26 Feb 2011 08:06:01 -0500 (EST) Date: Sat, 26 Feb 2011 13:57:31 +0100 From: Oleg Nesterov Subject: Re: [PATCH 3/5] exec: unify compat_do_execve() code Message-ID: <20110226125731.GA5315@redhat.com> References: <20101130200129.GG11905@redhat.com> <20101201182747.GB6143@redhat.com> <20110225175202.GA19059@redhat.com> <20110225175314.GD19059@redhat.com> <20110226123731.GC4416@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110226123731.GC4416@redhat.com> Sender: owner-linux-mm@kvack.org List-ID: To: Linus Torvalds Cc: Andrew Morton , KOSAKI Motohiro , LKML , linux-mm , pageexec@freemail.hu, Solar Designer , Eugene Teo , Brad Spengler , Roland McGrath , Milton Miller On 02/26, Oleg Nesterov wrote: > > Once again, to me "void __user*" looks better (just simpler). In this > case get_arg_ptr() becomes (without const/__user for the clarity) > > void *get_arg_ptr(void **argv, int argc, bool compat) > { > char *ptr; > > #ifdef CONFIG_COMPAT > if (unlikely(compat)) { > compat_uptr_t *a = argv; > compat_uptr_t p; > > if (get_user(p, a + argc)) > return ERR_PTR(-EFAULT); > > return compat_ptr(p); > } > #endif > > if (get_user(ptr, argv + argc)) > return ERR_PTR(-EFAULT); > > return ptr; > } > > Otherwise, get_arg_ptr() should return conditional_user_ptr_t as well, No, this is not true, I am stupid. Still, > this looks like the unnecessary complication to me, but of course this > is subjective. > > So, what do you think? Yes, please. Oleg. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: email@kvack.org