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
2e7fa3fb
Commit
2e7fa3fb
authored
Dec 16, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied updates from 2.5.51 and 2.5.52.
parent
8ca27771
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
10 deletions
+29
-10
arch/um/kernel/ptrace.c
arch/um/kernel/ptrace.c
+2
-1
arch/um/kernel/signal_kern.c
arch/um/kernel/signal_kern.c
+7
-0
arch/um/kernel/sys_call_table.c
arch/um/kernel/sys_call_table.c
+1
-1
arch/um/kernel/syscall_kern.c
arch/um/kernel/syscall_kern.c
+5
-1
arch/um/uml.lds.S
arch/um/uml.lds.S
+10
-1
include/asm-um/thread_info.h
include/asm-um/thread_info.h
+4
-6
No files found.
arch/um/kernel/ptrace.c
View file @
2e7fa3fb
...
@@ -33,7 +33,8 @@ int sys_ptrace(long request, long pid, long addr, long data)
...
@@ -33,7 +33,8 @@ int sys_ptrace(long request, long pid, long addr, long data)
if
(
current
->
ptrace
&
PT_PTRACED
)
if
(
current
->
ptrace
&
PT_PTRACED
)
goto
out
;
goto
out
;
if
((
ret
=
security_ptrace
(
current
->
parent
,
current
)))
ret
=
security_ptrace
(
current
->
parent
,
current
);
if
(
ret
)
goto
out
;
goto
out
;
/* set the ptrace bit in the process flags. */
/* set the ptrace bit in the process flags. */
...
...
arch/um/kernel/signal_kern.c
View file @
2e7fa3fb
...
@@ -69,6 +69,9 @@ static int handle_signal(struct pt_regs *regs, unsigned long signr,
...
@@ -69,6 +69,9 @@ static int handle_signal(struct pt_regs *regs, unsigned long signr,
ret
=
0
;
ret
=
0
;
switch
(
error
){
switch
(
error
){
case
-
ERESTART_RESTARTBLOCK
:
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
case
-
ERESTARTNOHAND
:
case
-
ERESTARTNOHAND
:
ret
=
-
EINTR
;
ret
=
-
EINTR
;
break
;
break
;
...
@@ -160,6 +163,10 @@ static int kern_do_signal(struct pt_regs *regs, sigset_t *oldset, int error)
...
@@ -160,6 +163,10 @@ static int kern_do_signal(struct pt_regs *regs, sigset_t *oldset, int error)
PT_REGS_ORIG_SYSCALL
(
regs
)
=
PT_REGS_SYSCALL_NR
(
regs
);
PT_REGS_ORIG_SYSCALL
(
regs
)
=
PT_REGS_SYSCALL_NR
(
regs
);
PT_REGS_RESTART_SYSCALL
(
regs
);
PT_REGS_RESTART_SYSCALL
(
regs
);
}
}
else
if
(
PT_REGS_SYSCALL_RET
(
regs
)
==
-
ERESTART_RESTARTBLOCK
){
PT_REGS_SYSCALL_RET
(
regs
)
=
__NR_restart_syscall
;
PT_REGS_RESTART_SYSCALL
(
regs
);
}
}
}
/* This closes a way to execute a system call on the host. If
/* This closes a way to execute a system call on the host. If
...
...
arch/um/kernel/sys_call_table.c
View file @
2e7fa3fb
...
@@ -254,7 +254,7 @@ extern syscall_handler_t um_stime;
...
@@ -254,7 +254,7 @@ extern syscall_handler_t um_stime;
#endif
#endif
syscall_handler_t
*
sys_call_table
[]
=
{
syscall_handler_t
*
sys_call_table
[]
=
{
[
0
]
=
sys_ni
_syscall
,
[
__NR_restart_syscall
]
=
sys_restart
_syscall
,
[
__NR_exit
]
=
sys_exit
,
[
__NR_exit
]
=
sys_exit
,
[
__NR_fork
]
=
sys_fork
,
[
__NR_fork
]
=
sys_fork
,
[
__NR_read
]
=
(
syscall_handler_t
*
)
sys_read
,
[
__NR_read
]
=
(
syscall_handler_t
*
)
sys_read
,
...
...
arch/um/kernel/syscall_kern.c
View file @
2e7fa3fb
...
@@ -182,7 +182,11 @@ int sys_ipc (uint call, int first, int second,
...
@@ -182,7 +182,11 @@ int sys_ipc (uint call, int first, int second,
switch
(
call
)
{
switch
(
call
)
{
case
SEMOP
:
case
SEMOP
:
return
sys_semop
(
first
,
(
struct
sembuf
*
)
ptr
,
second
);
return
sys_semtimedop
(
first
,
(
struct
sembuf
*
)
ptr
,
second
,
NULL
);
case
SEMTIMEDOP
:
return
sys_semtimedop
(
first
,
(
struct
sembuf
*
)
ptr
,
second
,
(
const
struct
timespec
*
)
fifth
);
case
SEMGET
:
case
SEMGET
:
return
sys_semget
(
first
,
second
,
third
);
return
sys_semget
(
first
,
second
,
third
);
case
SEMCTL
:
{
case
SEMCTL
:
{
...
...
arch/um/uml.lds.S
View file @
2e7fa3fb
...
@@ -59,18 +59,27 @@ SECTIONS
...
@@ -59,18 +59,27 @@ SECTIONS
__uml_setup_start
=
.
;
__uml_setup_start
=
.
;
.
uml.setup.init
:
{
*(
.
uml
.
setup
.
init
)
}
.
uml.setup.init
:
{
*(
.
uml
.
setup
.
init
)
}
__uml_setup_end
=
.
;
__uml_setup_end
=
.
;
__uml_help_start
=
.
;
__uml_help_start
=
.
;
.
uml.help.init
:
{
*(
.
uml
.
help
.
init
)
}
.
uml.help.init
:
{
*(
.
uml
.
help
.
init
)
}
__uml_help_end
=
.
;
__uml_help_end
=
.
;
__uml_postsetup_start
=
.
;
__uml_postsetup_start
=
.
;
.
uml.postsetup.init
:
{
*(
.
uml
.
postsetup
.
init
)
}
.
uml.postsetup.init
:
{
*(
.
uml
.
postsetup
.
init
)
}
__uml_postsetup_end
=
.
;
__uml_postsetup_end
=
.
;
__setup_start
=
.
;
__setup_start
=
.
;
.
init.setup
:
{
*(
.
init
.
setup
)
}
.
init.setup
:
{
*(
.
init
.
setup
)
}
__setup_end
=
.
;
__setup_end
=
.
;
__start___param
=
.
;
__param
:
{
*(
__param
)
}
__stop___param
=
.
;
__per_cpu_start
=
.
;
__per_cpu_start
=
.
;
.
data.percpu
:
{
*(
.
data
.
percpu
)
}
.
data.percpu
:
{
*(
.
data
.
percpu
)
}
__per_cpu_end
=
.
;
__per_cpu_end
=
.
;
__initcall_start
=
.
;
__initcall_start
=
.
;
.
initcall.init
:
{
.
initcall.init
:
{
*(.
initcall1.init
)
*(.
initcall1.init
)
...
...
include/asm-um/thread_info.h
View file @
2e7fa3fb
...
@@ -20,14 +20,9 @@ struct thread_info {
...
@@ -20,14 +20,9 @@ struct thread_info {
mm_segment_t
addr_limit
;
/* thread address space:
mm_segment_t
addr_limit
;
/* thread address space:
0-0xBFFFFFFF for user
0-0xBFFFFFFF for user
0-0xFFFFFFFF for kernel */
0-0xFFFFFFFF for kernel */
struct
restart_block
restart_block
;
};
};
/*
* macros/functions for gaining access to the thread information structure
*
* preempt_count needs to be 1 initially, until the scheduler is functional.
*/
#define INIT_THREAD_INFO(tsk) \
#define INIT_THREAD_INFO(tsk) \
{ \
{ \
task: &tsk, \
task: &tsk, \
...
@@ -36,6 +31,9 @@ struct thread_info {
...
@@ -36,6 +31,9 @@ struct thread_info {
cpu: 0, \
cpu: 0, \
preempt_count: 1, \
preempt_count: 1, \
addr_limit: KERNEL_DS, \
addr_limit: KERNEL_DS, \
restart_block: { \
fn: do_no_restart_syscall, \
}, \
}
}
#define init_thread_info (init_thread_union.thread_info)
#define init_thread_info (init_thread_union.thread_info)
...
...
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