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
dc3befe0
Commit
dc3befe0
authored
Nov 13, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-ntfs.bkbits.net/ntfs-2.6
into home.osdl.org:/home/torvalds/v2.5/linux
parents
cc643cf2
1074ddff
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
10 deletions
+23
-10
arch/i386/kernel/mpparse.c
arch/i386/kernel/mpparse.c
+2
-2
arch/ia64/ia32/ia32_entry.S
arch/ia64/ia32/ia32_entry.S
+0
-2
arch/sparc/kernel/signal.c
arch/sparc/kernel/signal.c
+7
-2
arch/sparc64/kernel/signal.c
arch/sparc64/kernel/signal.c
+7
-2
arch/sparc64/kernel/signal32.c
arch/sparc64/kernel/signal32.c
+7
-2
No files found.
arch/i386/kernel/mpparse.c
View file @
dc3befe0
...
...
@@ -361,7 +361,7 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
unsigned
char
*
mpt
=
((
unsigned
char
*
)
mpc
)
+
count
;
if
(
memcmp
(
mpc
->
mpc_signature
,
MPC_SIGNATURE
,
4
))
{
p
anic
(
"SMP mptable: bad signature [%c%c%c%c]!
\n
"
,
p
rintk
(
"SMP mptable: bad signature [%c%c%c%c]!
\n
"
,
mpc
->
mpc_signature
[
0
],
mpc
->
mpc_signature
[
1
],
mpc
->
mpc_signature
[
2
],
...
...
@@ -369,7 +369,7 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
return
0
;
}
if
(
mpf_checksum
((
unsigned
char
*
)
mpc
,
mpc
->
mpc_length
))
{
p
anic
(
"SMP mptable: checksum error!
\n
"
);
p
rintk
(
"SMP mptable: checksum error!
\n
"
);
return
0
;
}
if
(
mpc
->
mpc_spec
!=
0x01
&&
mpc
->
mpc_spec
!=
0x04
)
{
...
...
arch/ia64/ia32/ia32_entry.S
View file @
dc3befe0
...
...
@@ -90,7 +90,6 @@ END(sys32_sigsuspend)
GLOBAL_ENTRY
(
ia32_ret_from_clone
)
PT_REGS_UNWIND_INFO
(0)
#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
{
/
*
*
Some
versions
of
gas
generate
bad
unwind
info
if
the
first
instruction
of
a
*
procedure
doesn
't go into the first slot of a bundle. This is a workaround.
...
...
@@ -105,7 +104,6 @@ GLOBAL_ENTRY(ia32_ret_from_clone)
br.call.sptk.many
rp
=
ia64_invoke_schedule_tail
}
.
ret1
:
#endif
adds
r2
=
TI_FLAGS
+
IA64_TASK_SIZE
,
r13
;;
ld4
r2
=[
r2
]
...
...
arch/sparc/kernel/signal.c
View file @
dc3befe0
...
...
@@ -1035,8 +1035,6 @@ static inline void syscall_restart(unsigned long orig_i0, struct pt_regs *regs,
{
switch
(
regs
->
u_regs
[
UREG_I0
])
{
case
ERESTART_RESTARTBLOCK
:
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
/* fallthrough */
case
ERESTARTNOHAND
:
no_system_call_restart:
regs
->
u_regs
[
UREG_I0
]
=
EINTR
;
...
...
@@ -1086,6 +1084,13 @@ asmlinkage int do_signal(sigset_t *oldset, struct pt_regs * regs,
struct
k_sigaction
*
ka
;
ka
=
&
current
->
sighand
->
action
[
signr
-
1
];
/* Always make any pending restarted system
* calls return -EINTR.
*/
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
cookie
.
restart_syscall
)
syscall_restart
(
cookie
.
orig_i0
,
regs
,
&
ka
->
sa
);
handle_signal
(
signr
,
ka
,
&
info
,
oldset
,
regs
,
svr4_signal
);
...
...
arch/sparc64/kernel/signal.c
View file @
dc3befe0
...
...
@@ -579,8 +579,6 @@ static inline void syscall_restart(unsigned long orig_i0, struct pt_regs *regs,
{
switch
(
regs
->
u_regs
[
UREG_I0
])
{
case
ERESTART_RESTARTBLOCK
:
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
/* fallthrough */
case
ERESTARTNOHAND
:
no_system_call_restart:
regs
->
u_regs
[
UREG_I0
]
=
EINTR
;
...
...
@@ -628,6 +626,13 @@ static int do_signal(sigset_t *oldset, struct pt_regs * regs,
struct
k_sigaction
*
ka
;
ka
=
&
current
->
sighand
->
action
[
signr
-
1
];
/* Always make any pending restarted system
* calls return -EINTR.
*/
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
cookie
.
restart_syscall
)
syscall_restart
(
orig_i0
,
regs
,
&
ka
->
sa
);
handle_signal
(
signr
,
ka
,
&
info
,
oldset
,
regs
);
...
...
arch/sparc64/kernel/signal32.c
View file @
dc3befe0
...
...
@@ -1221,8 +1221,6 @@ static inline void syscall_restart32(unsigned long orig_i0, struct pt_regs *regs
{
switch
(
regs
->
u_regs
[
UREG_I0
])
{
case
ERESTART_RESTARTBLOCK
:
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
/* fallthrough */
case
ERESTARTNOHAND
:
no_system_call_restart:
regs
->
u_regs
[
UREG_I0
]
=
EINTR
;
...
...
@@ -1259,6 +1257,13 @@ int do_signal32(sigset_t *oldset, struct pt_regs * regs,
struct
k_sigaction
*
ka
;
ka
=
&
current
->
sighand
->
action
[
signr
-
1
];
/* Always make any pending restarted system
* calls return -EINTR.
*/
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
cookie
.
restart_syscall
)
syscall_restart32
(
orig_i0
,
regs
,
&
ka
->
sa
);
handle_signal32
(
signr
,
ka
,
&
info
,
oldset
,
regs
,
svr4_signal
);
...
...
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