Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
2f775dba
Commit
2f775dba
authored
Mar 06, 2008
by
Bryan Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Blackfin] arch: to kill syscalls missing warning by adding new timerfd syscalls
Signed-off-by:
Bryan Wu
<
cooloney@kernel.org
>
parent
29e8c3c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
arch/blackfin/mach-common/entry.S
arch/blackfin/mach-common/entry.S
+4
-1
include/asm-blackfin/unistd.h
include/asm-blackfin/unistd.h
+4
-2
No files found.
arch/blackfin/mach-common/entry.S
View file @
2f775dba
...
...
@@ -1369,7 +1369,7 @@ ENTRY(_sys_call_table)
.
long
_sys_epoll_pwait
.
long
_sys_utimensat
.
long
_sys_signalfd
.
long
_sys_
ni_syscall
.
long
_sys_
timerfd_create
.
long
_sys_eventfd
/*
350
*/
.
long
_sys_pread64
.
long
_sys_pwrite64
...
...
@@ -1378,6 +1378,9 @@ ENTRY(_sys_call_table)
.
long
_sys_get_robust_list
/*
355
*/
.
long
_sys_fallocate
.
long
_sys_semtimedop
.
long
_sys_timerfd_settime
.
long
_sys_timerfd_gettime
.
rept
NR_syscalls
-(
.
-
_sys_call_table
)/
4
.
long
_sys_ni_syscall
.
endr
...
...
include/asm-blackfin/unistd.h
View file @
2f775dba
...
...
@@ -361,7 +361,7 @@
#define __NR_epoll_pwait 346
#define __NR_utimensat 347
#define __NR_signalfd 348
#define __NR_timerfd
349
#define __NR_timerfd
_create
349
#define __NR_eventfd 350
#define __NR_pread64 351
#define __NR_pwrite64 352
...
...
@@ -370,8 +370,10 @@
#define __NR_get_robust_list 355
#define __NR_fallocate 356
#define __NR_semtimedop 357
#define __NR_timerfd_settime 358
#define __NR_timerfd_gettime 359
#define __NR_syscall 3
58
#define __NR_syscall 3
60
#define NR_syscalls __NR_syscall
/* Old optional stuff no one actually uses */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment