Re: [PATCH v2 1/5] m68k: Rename system call table file name

2018-09-20 Thread Philippe De Muyter
On Thu, Sep 20, 2018 at 08:36:09PM +0530, Firoz Khan wrote: > The system call table entries are present in syscalltable.S. One of > the patch in this patch series will auto-generate the system call > table entries using the system call table generation script and > which'll replace the existig

[PATCH 1/1] drivers/dio : Changes Makefile to avoid acciental compilation.

2018-09-20 Thread Leonardo Brás
Changes Makefile so 'make drivers/dio/' won't compile this driver unless CONFIG_DIO is enabled. Previously, it would compile independently of .config file. Signed-off-by: Leonardo Brás --- drivers/dio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v2 4/5] m68k: uapi header and system call table file generation

2018-09-20 Thread Firoz Khan
System call table generation script must be run to generate unistd_32.h and syscall_table.h files. This patch will have changes which will invokes the script. This patch will generate unistd_32.h and syscall_table.h files by the syscall table generation script invoked by arch/m68k/Makefile and

[PATCH v2 3/5] m68k: Added system call table generation support

2018-09-20 Thread Firoz Khan
The system call tables are in different format in all architecture and it will be difficult to manually add or modify the system calls in the respective files. To make it easy by keeping a script and which'll generate the header file and syscall table file so this change will unify them across all

[PATCH v2 1/5] m68k: Rename system call table file name

2018-09-20 Thread Firoz Khan
The system call table entries are present in syscalltable.S. One of the patch in this patch series will auto-generate the system call table entries using the system call table generation script and which'll replace the existig table file. In order to come up with a common naming convention across

[PATCH v2 5/5] m68k: added __IGNORE* entries in asm/unistd.h

2018-09-20 Thread Firoz Khan
Added few __IGNORE* entries for seccomp, pkey_mprotect, pkey_alloc, pkey_free, io_pgetevents and rseq in the file asm/unistd.h as it is correct to keep __IGNORE* entry in non uapi header asm/unistd.h while uapi/asm/unistd.h must hold information only useful for user space applications.

Re: [PATCH 2/4] m68k: Replace NR_syscalls macro from asm/unistd.h

2018-09-20 Thread Geert Uytterhoeven
Hi Firoz, On Thu, Sep 20, 2018 at 10:12 AM Firoz Khan wrote: > On 18 September 2018 at 15:34, Geert Uytterhoeven > wrote: > > On Tue, Sep 18, 2018 at 9:16 AM Firoz Khan wrote: > >> On 9 August 2018 at 13:00, Geert Uytterhoeven wrote: > >> > One first comment below... > >> > > >> > On Thu,

Re: [PATCH 2/4] m68k: Replace NR_syscalls macro from asm/unistd.h

2018-09-20 Thread Firoz Khan
Hi Geert, On 18 September 2018 at 15:34, Geert Uytterhoeven wrote: > Hi Firoz, > > On Tue, Sep 18, 2018 at 9:16 AM Firoz Khan wrote: >> On 9 August 2018 at 13:00, Geert Uytterhoeven wrote: >> > One first comment below... >> > >> > On Thu, Aug 9, 2018 at 7:16 AM Firoz Khan wrote: >> >>