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
5c94b473
Commit
5c94b473
authored
Sep 17, 2002
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: Allocate hugepages and exit_group syscalls
parent
e0f2df2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
arch/ppc64/kernel/misc.S
arch/ppc64/kernel/misc.S
+8
-2
include/asm-ppc64/unistd.h
include/asm-ppc64/unistd.h
+3
-0
No files found.
arch/ppc64/kernel/misc.S
View file @
5c94b473
...
...
@@ -736,8 +736,11 @@ _GLOBAL(sys_call_table32)
.
llong
.
sys_ni_syscall
/*
reserved
for
sys_io_getevents
*/
.
llong
.
sys_ni_syscall
/*
230
-
reserved
for
sys_io_submit
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
sys_io_cancel
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
alloc_hugepages
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
free_hugepages
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
exit_group
*/
.
rept
NR_syscalls
-
23
1
.
rept
NR_syscalls
-
23
4
.
llong
.
sys_ni_syscall
.
endr
#endif
...
...
@@ -976,7 +979,10 @@ _GLOBAL(sys_call_table)
.
llong
.
sys_io_getevents
.
llong
.
sys_io_submit
/*
230
*/
.
llong
.
sys_io_cancel
.
llong
.
sys_ni_syscall
/*
reserved
for
alloc_hugepages
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
free_hugepages
*/
.
llong
.
sys_ni_syscall
/*
reserved
for
exit_group
*/
.
rept
NR_syscalls
-
23
1
.
rept
NR_syscalls
-
23
4
.
llong
.
sys_ni_syscall
.
endr
include/asm-ppc64/unistd.h
View file @
5c94b473
...
...
@@ -241,6 +241,9 @@
#define __NR_io_getevents 229
#define __NR_io_submit 230
#define __NR_io_cancel 231
#define __NR_alloc_hugepages 232
#define __NR_free_hugepages 233
#define __NR_exit_group 234
#define __NR(n) #n
...
...
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