Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f6f84a1 authored by Ian Maund's avatar Ian Maund
Browse files

Revert "sched: Add new scheduler syscalls to support an extended scheduling parameters ABI"



This reverts commit 50f8b04c. This commit
depends on a commit which is causing audio regressions. Until its
dependency can be brought it, it should be removed.

Change-Id: Ia6c00e7744a5d4e562299ddb4cabe4fbab65e9bc
Signed-off-by: default avatarIan Maund <imaund@codeaurora.org>
parent 6a560393
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

#include <uapi/asm/unistd.h>

#define __NR_syscalls  (384)
#define __NR_syscalls  (380)
#define __ARM_NR_cmpxchg		(__ARM_NR_BASE+0x00fff0)

#define __ARCH_WANT_STAT64
+0 −2
Original line number Diff line number Diff line
@@ -406,8 +406,6 @@
#define __NR_process_vm_writev		(__NR_SYSCALL_BASE+377)
#define __NR_kcmp			(__NR_SYSCALL_BASE+378)
#define __NR_finit_module		(__NR_SYSCALL_BASE+379)
#define __NR_sched_setattr		(__NR_SYSCALL_BASE+380)
#define __NR_sched_getattr		(__NR_SYSCALL_BASE+381)

/*
 * This may need to be greater than __NR_last_syscall+1 in order to
+0 −2
Original line number Diff line number Diff line
@@ -389,8 +389,6 @@
		CALL(sys_process_vm_writev)
		CALL(sys_kcmp)
		CALL(sys_finit_module)
/* 380 */	CALL(sys_sched_setattr)
		CALL(sys_sched_getattr)
#ifndef syscalls_counted
.equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls
#define syscalls_counted
+0 −2
Original line number Diff line number Diff line
@@ -357,5 +357,3 @@
348	i386	process_vm_writev	sys_process_vm_writev		compat_sys_process_vm_writev
349	i386	kcmp			sys_kcmp
350	i386	finit_module		sys_finit_module
351	i386	sched_setattr		sys_sched_setattr
352	i386	sched_getattr		sys_sched_getattr
+0 −2
Original line number Diff line number Diff line
@@ -320,8 +320,6 @@
311	64	process_vm_writev	sys_process_vm_writev
312	common	kcmp			sys_kcmp
313	common	finit_module		sys_finit_module
314	common	sched_setattr		sys_sched_setattr
315	common	sched_getattr		sys_sched_getattr

#
# x32-specific system call numbers start at 512 to avoid cache impact
Loading