Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1517513

Re: [RFC][ATCH 3/3] syscalls: Remove start and number from syscall_get_arguments() args

From Steven Rostedt <rostedt@goodmis.org>
Newsgroups linux.kernel
Subject Re: [RFC][ATCH 3/3] syscalls: Remove start and number from syscall_get_arguments() args
Date 2016-11-08 20:30 +0100
Message-ID <sBkfM-5aV-29@gated-at.bofh.it> (permalink)
References <sAZO1-ic-5@gated-at.bofh.it> <sAZO1-ic-3@gated-at.bofh.it> <sB1Zw-1Es-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, 7 Nov 2016 15:54:14 -0800
Andy Lutomirski <luto@amacapital.net> wrote:

> On Mon, Nov 7, 2016 at 1:26 PM, Steven Rostedt <rostedt@goodmis.org> wrote:
> > From: Steven Rostedt <rostedt@goodmis.org>
> >  
> 
> > diff --git a/arch/x86/include/asm/syscall.h b/arch/x86/include/asm/syscall.h
> > index e3c95e8e61c5..050891169b51 100644
> > --- a/arch/x86/include/asm/syscall.h
> > +++ b/arch/x86/include/asm/syscall.h  
> 
> x86 part is:
> 
> Reviewed-by: Andy Lutomirski <luto@kernel.org>
> 
> Although I wonder why this takes a task argument.

Thanks, although kbuild bot discovered a slight mistake:

	} else {
# endif
		*args++ = regs->di;

Should be:

	} else
# endif
	{
		*args++ = regs->di;

I'll update, and also look at making it a struct.

-- Steve

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[RFC][ATCH 3/3] syscalls: Remove start and number from syscall_get_arguments() args Steven Rostedt <rostedt@goodmis.org> - 2016-11-07 22:40 +0100
  Re: [RFC][ATCH 3/3] syscalls: Remove start and number from  syscall_get_arguments() args Andy Lutomirski <luto@amacapital.net> - 2016-11-08 01:00 +0100
    Re: [RFC][ATCH 3/3] syscalls: Remove start and number from  syscall_get_arguments() args Steven Rostedt <rostedt@goodmis.org> - 2016-11-08 20:30 +0100

csiph-web