mbox series

[0/2] parisc: Unify the system call scripts

Message ID 1546444953-21630-1-git-send-email-firoz.khan@linaro.org
Headers show
Series parisc: Unify the system call scripts | expand

Message

Firoz Khan Jan. 2, 2019, 4:02 p.m. UTC
System call table generation support is provided for
alpha, ia64, m68k, microblaze, mips, parisc, powerpc,
sh, sparc and xtensa architectures. The implementat-
ions are almost similar across all the above archte-
ctures. In order to reduce the source code across all
the above architectures, create common ".sh" files and
keep it in the common directory, script/. This will 
be a generic scripts which can use for all the above
architectures.

This patch depends on;
 https://lore.kernel.org/lkml/1546439331-18646-1-git-send-email-firoz.khan@linaro.org/

Firoz Khan (2):
  parisc: remove nargs from __SYSCALL
  parisc: generate uapi header and system call table files

 arch/parisc/kernel/syscall.S              |  2 +-
 arch/parisc/kernel/syscalls/Makefile      | 11 ++++++++--
 arch/parisc/kernel/syscalls/syscallhdr.sh | 36 -------------------------------
 arch/parisc/kernel/syscalls/syscalltbl.sh | 36 -------------------------------
 4 files changed, 10 insertions(+), 75 deletions(-)
 delete mode 100644 arch/parisc/kernel/syscalls/syscallhdr.sh
 delete mode 100644 arch/parisc/kernel/syscalls/syscalltbl.sh

-- 
1.9.1

Comments

Helge Deller Jan. 6, 2019, 9:07 a.m. UTC | #1
On 02.01.19 17:02, Firoz Khan wrote:
> System call table generation support is provided for

> alpha, ia64, m68k, microblaze, mips, parisc, powerpc,

> sh, sparc and xtensa architectures. The implementat-

> ions are almost similar across all the above archte-

> ctures. In order to reduce the source code across all

> the above architectures, create common ".sh" files and

> keep it in the common directory, script/. This will 

> be a generic scripts which can use for all the above

> architectures.

> 

> This patch depends on;

>  https://lore.kernel.org/lkml/1546439331-18646-1-git-send-email-firoz.khan@linaro.org/


Ok, this has to go upstream first...

> Firoz Khan (2):

>   parisc: remove nargs from __SYSCALL

>   parisc: generate uapi header and system call table files


Both patches seem OK, and I can then take them through the parisc
git tree when the patch above has reached upstream.

Thanks!
Helge

> 

>  arch/parisc/kernel/syscall.S              |  2 +-

>  arch/parisc/kernel/syscalls/Makefile      | 11 ++++++++--

>  arch/parisc/kernel/syscalls/syscallhdr.sh | 36 -------------------------------

>  arch/parisc/kernel/syscalls/syscalltbl.sh | 36 -------------------------------

>  4 files changed, 10 insertions(+), 75 deletions(-)

>  delete mode 100644 arch/parisc/kernel/syscalls/syscallhdr.sh

>  delete mode 100644 arch/parisc/kernel/syscalls/syscalltbl.sh

>
Firoz Khan Jan. 14, 2019, 8:02 a.m. UTC | #2
Hi Helge,

On Sun, 6 Jan 2019 at 14:37, Helge Deller <deller@gmx.de> wrote:
>

> Both patches seem OK, and I can then take them through the parisc

> git tree when the patch above has reached upstream.


Thanks for the mail. Sorry for the late response as I was on a vacation.

FYI, I'm going to abandon this patch series (for other 9 architecture
also) and planning to come up with asm-generic support along with
this one. That can be single patch series and everything can be landed
in the same time.

Firoz