Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753357AbcKRQjV (ORCPT ); Fri, 18 Nov 2016 11:39:21 -0500 Received: from mail-vk0-f65.google.com ([209.85.213.65]:34775 "EHLO mail-vk0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752247AbcKRQjQ (ORCPT ); Fri, 18 Nov 2016 11:39:16 -0500 MIME-Version: 1.0 In-Reply-To: <20161118072723.GA15912@gmail.com> References: <20161117020610.5302-1-khuey@kylehuey.com> <20161117020610.5302-3-khuey@kylehuey.com> <20161118072723.GA15912@gmail.com> From: Kyle Huey Date: Fri, 18 Nov 2016 08:39:14 -0800 Message-ID: Subject: Re: [PATCH v12 2/7] x86/arch_prctl/64: Rename do_arch_prctl to do_arch_prctl_64 To: Ingo Molnar Cc: "Robert O'Callahan" , Thomas Gleixner , Andy Lutomirski , Ingo Molnar , "H. Peter Anvin" , "maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT)" , Paolo Bonzini , =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= , Jeff Dike , Richard Weinberger , Alexander Viro , Shuah Khan , Dave Hansen , Borislav Petkov , Peter Zijlstra , Boris Ostrovsky , Len Brown , "Rafael J. Wysocki" , Dmitry Safonov , David Matlack , Nadav Amit , open list , "open list:USER-MODE LINUX (UML)" , "open list:USER-MODE LINUX (UML)" , "open list:FILESYSTEMS (VFS and infrastructure)" , "open list:KERNEL SELFTEST FRAMEWORK" , kvm list Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 800 Lines: 21 On Thu, Nov 17, 2016 at 11:27 PM, Ingo Molnar wrote: > > * Kyle Huey wrote: > >> In order to introduce new arch_prctls that are not 64 bit only, rename the >> existing 64 bit implementation to do_arch_prctl_64(). Also rename the second >> argument to arch_prctl(), which will no longer always be an address. > >> #ifdef CONFIG_X86_64 >> void entry_SYSCALL_64(void); >> +long do_arch_prctl_64(struct task_struct *task, int code, unsigned long arg2); >> #endif > > Could you please also rename the weirdly named 'code' argument to 'option', > to be in line with the existing sys_prctl() interface nomenclature? arch_prctl consistently uses 'code' throughout the kernel and in the main page. This renaming should probably be done separately if desired. - Kyle