Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752602Ab1BZS7T (ORCPT ); Sat, 26 Feb 2011 13:59:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55286 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752477Ab1BZS7S (ORCPT ); Sat, 26 Feb 2011 13:59:18 -0500 Date: Sat, 26 Feb 2011 18:44:08 +0100 From: Oleg Nesterov To: Linus Torvalds Cc: Andrew Morton , KOSAKI Motohiro , LKML , linux-mm , pageexec@freemail.hu, Solar Designer , Eugene Teo , Brad Spengler , Roland McGrath , Milton Miller Subject: Re: [PATCH 3/5] exec: unify compat_do_execve() code Message-ID: <20110226174408.GA17442@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: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1257 Lines: 39 On 02/26, Linus Torvalds wrote: > > On Sat, Feb 26, 2011 at 4:37 AM, Oleg Nesterov wrote: > >> > > Otherwise, get_arg_ptr() should return conditional_user_ptr_t as well, > > No it shouldn't. (Yes I am stupid, see the next email). > and notice how it gets the types right, and it even has one line LESS > than your version, exactly because it gets the types right and doesn't > need that implied cast in your > > compat_uptr_t *a = argv; > > (in fact, I think your version needs an _explicit_ cast in order to > not get a warning: you can't just cast "void **" to something else). Yes, and get_user(argv) in the !compat case doesn't look nice, I agree. > See? The advantage of the union is that the types are correct, which > means that the casts are unnecessary. My point was, apart from the trivial get_arg_ptr() helper, nobody else uses this argv/envp, so I thought it is OK to drop the type info and use "void *". But as I said, I won't insist. I'll redo/resend. Thanks. Oleg. -- 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/