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
nexedi
linux
Commits
4d4230c2
Commit
4d4230c2
authored
Oct 17, 2008
by
Tony Luck
Browse files
Options
Browse Files
Download
Plain Diff
Pull compat into release branch
parents
a9894a4a
0f32dc9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
25 deletions
+3
-25
arch/ia64/ia32/ia32_entry.S
arch/ia64/ia32/ia32_entry.S
+2
-2
arch/ia64/ia32/sys_ia32.c
arch/ia64/ia32/sys_ia32.c
+0
-23
arch/ia64/include/asm/unistd.h
arch/ia64/include/asm/unistd.h
+1
-0
No files found.
arch/ia64/ia32/ia32_entry.S
View file @
4d4230c2
...
...
@@ -202,7 +202,7 @@ ia32_syscall_table:
data8
sys32_ptrace
data8
sys32_alarm
data8
sys_ni_syscall
data8
sys
32
_pause
data8
sys_pause
data8
compat_sys_utime
/*
30
*/
data8
sys_ni_syscall
/*
old
stty
syscall
holder
*/
data8
sys_ni_syscall
/*
old
gtty
syscall
holder
*/
...
...
@@ -215,7 +215,7 @@ ia32_syscall_table:
data8
sys_mkdir
data8
sys_rmdir
/*
40
*/
data8
sys_dup
data8
sys
32
_pipe
data8
sys_pipe
data8
compat_sys_times
data8
sys_ni_syscall
/*
old
prof
syscall
holder
*/
data8
sys32_brk
/*
45
*/
...
...
arch/ia64/ia32/sys_ia32.c
View file @
4d4230c2
...
...
@@ -1098,21 +1098,6 @@ sys32_mremap (unsigned int addr, unsigned int old_len, unsigned int new_len,
return
ret
;
}
asmlinkage
long
sys32_pipe
(
int
__user
*
fd
)
{
int
retval
;
int
fds
[
2
];
retval
=
do_pipe_flags
(
fds
,
0
);
if
(
retval
)
goto
out
;
if
(
copy_to_user
(
fd
,
fds
,
sizeof
(
fds
)))
retval
=
-
EFAULT
;
out:
return
retval
;
}
asmlinkage
unsigned
long
sys32_alarm
(
unsigned
int
seconds
)
{
...
...
@@ -1703,14 +1688,6 @@ sys32_sigaltstack (ia32_stack_t __user *uss32, ia32_stack_t __user *uoss32,
return
ret
;
}
asmlinkage
int
sys32_pause
(
void
)
{
current
->
state
=
TASK_INTERRUPTIBLE
;
schedule
();
return
-
ERESTARTNOHAND
;
}
asmlinkage
int
sys32_msync
(
unsigned
int
start
,
unsigned
int
len
,
int
flags
)
{
...
...
arch/ia64/include/asm/unistd.h
View file @
4d4230c2
...
...
@@ -337,6 +337,7 @@
# define __ARCH_WANT_SYS_NICE
# define __ARCH_WANT_SYS_OLD_GETRLIMIT
# define __ARCH_WANT_SYS_OLDUMOUNT
# define __ARCH_WANT_SYS_PAUSE
# define __ARCH_WANT_SYS_SIGPENDING
# define __ARCH_WANT_SYS_SIGPROCMASK
# define __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
...
...
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