Re: [PATCH 1/7] exec: Remove unnecessary spaces from binfmts.h

2020-07-14 Thread Christoph Hellwig
On Tue, Jul 14, 2020 at 08:28:42AM -0500, Eric W. Biederman wrote: > > The general convention in the linux kernel is to define a pointer > member as "type *name". The declaration of struct linux_binprm has > several pointer defined as "type * name". Update them to the > form of "type *name" for

Re: [PATCH 1/7] exec: Remove unnecessary spaces from binfmts.h

2020-07-14 Thread Kees Cook
On Tue, Jul 14, 2020 at 08:28:42AM -0500, Eric W. Biederman wrote: > > The general convention in the linux kernel is to define a pointer > member as "type *name". The declaration of struct linux_binprm has > several pointer defined as "type * name". Update them to the > form of "type *name" for

[PATCH 1/7] exec: Remove unnecessary spaces from binfmts.h

2020-07-14 Thread Eric W. Biederman
The general convention in the linux kernel is to define a pointer member as "type *name". The declaration of struct linux_binprm has several pointer defined as "type * name". Update them to the form of "type *name" for consistency. Suggested-by: Kees Cook Signed-off-by: "Eric W. Biederman" -