linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] System call table generation support
@ 2018-10-01 12:43 Firoz Khan
  2018-10-01 12:43 ` Firoz Khan
                   ` (3 more replies)
  0 siblings, 4 replies; 20+ messages in thread
From: Firoz Khan @ 2018-10-01 12:43 UTC (permalink / raw)
  To: Michal Simek, Greg Kroah-Hartman, Philippe Ombredanne,
	Thomas Gleixner, Kate Stewart
  Cc: y2038, linux-kernel, linux-arch, arnd, deepa.kernel,
	marcin.juszkiewicz, firoz.khan

The purpose of this patch series is:
1. We can easily add/modify/delete system call by changing entry 
in syscall.tbl file. No need to manually edit many files.

2. It is easy to unify the system call implementation across all 
the architectures. 

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 manually. 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 architectures.

syscall.tbl contains the list of available system calls along with 
system call number and corresponding entry point. Add a new system 
call in this architecture will be possible by adding new entry in 
the syscall.tbl file.

Adding a new table entry consisting of:
        - System call number.
        - ABI.
        - System call name.
        - Entry point name.
        - Compat entry name, if required.

ARM, s390 and x86 architecuture does exist the similar support. I 
leverage their implementation to come up with a generic solution.

I have done the same support for work for alpha, ia64, sparc, mips, 
parisc, powerpc, sh, sparc, and xtensa. But I started sending 
the patch for one architecuture for review. Below mentioned git
repository contains more details.
Git repo:- https://github.com/frzkhn/system_call_table_generator/

Finally, this is the ground work for solving the Y2038 issue. We 
need to add/change two dozen of system calls to solve Y2038 issue. 
So this patch series will help to easily modify from existing 
system call to Y2038 compatible system calls.

Firoz Khan (3):
  microblaze: replace __NR_syscalls macro from asm/unistd.h
  microblaze: add system call table generation support
  microblaze: uapi header and system call table file generation

 arch/microblaze/Makefile                      |   3 +
 arch/microblaze/include/asm/Kbuild            |   1 +
 arch/microblaze/include/asm/unistd.h          |   2 -
 arch/microblaze/include/uapi/asm/Kbuild       |   1 +
 arch/microblaze/include/uapi/asm/unistd.h     | 407 +-------------------------
 arch/microblaze/kernel/syscall_table.S        | 406 +------------------------
 arch/microblaze/kernel/syscalls/Makefile      |  38 +++
 arch/microblaze/kernel/syscalls/syscall.tbl   | 405 +++++++++++++++++++++++++
 arch/microblaze/kernel/syscalls/syscallhdr.sh |  35 +++
 arch/microblaze/kernel/syscalls/syscalltbl.sh |  34 +++
 10 files changed, 522 insertions(+), 810 deletions(-)
 create mode 100644 arch/microblaze/kernel/syscalls/Makefile
 create mode 100644 arch/microblaze/kernel/syscalls/syscall.tbl
 create mode 100644 arch/microblaze/kernel/syscalls/syscallhdr.sh
 create mode 100644 arch/microblaze/kernel/syscalls/syscalltbl.sh

-- 
1.9.1

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2018-10-10 13:45 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-01 12:43 [PATCH v2 0/3] System call table generation support Firoz Khan
2018-10-01 12:43 ` Firoz Khan
2018-10-01 12:43 ` [PATCH v2 1/3] microblaze: replace __NR_syscalls macro from asm/unistd.h Firoz Khan
2018-10-01 12:43   ` Firoz Khan
2018-10-01 12:43 ` [PATCH v2 2/3] microblaze: add system call table generation support Firoz Khan
2018-10-01 12:43   ` Firoz Khan
2018-10-01 12:43 ` [PATCH v2 3/3] microblaze: uapi header and system call table file generation Firoz Khan
2018-10-01 12:43   ` Firoz Khan
2018-10-02 14:06   ` Michal Simek
2018-10-02 14:06     ` Michal Simek
2018-10-03  5:08     ` Firoz Khan
2018-10-03  5:08       ` Firoz Khan
2018-10-03 11:26       ` Michal Simek
2018-10-03 11:26         ` Michal Simek
2018-10-04 10:35         ` Firoz Khan
2018-10-04 10:35           ` Firoz Khan
2018-10-10  3:14           ` Firoz Khan
2018-10-10  3:14             ` Firoz Khan
2018-10-10  6:23             ` Michal Simek
2018-10-10  6:23               ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).