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
db165cde
Commit
db165cde
authored
Apr 13, 2003
by
Martin Schwidefsky
Committed by
Linus Torvalds
Apr 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] s390: uni-processor builds.
Fixes for s390 kernel configured with CONFIG_SMP=n.
parent
a863aaa3
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
9 deletions
+14
-9
arch/s390/kernel/entry.S
arch/s390/kernel/entry.S
+0
-6
arch/s390/kernel/setup.c
arch/s390/kernel/setup.c
+5
-0
arch/s390/kernel/signal.c
arch/s390/kernel/signal.c
+1
-0
arch/s390/kernel/traps.c
arch/s390/kernel/traps.c
+1
-0
arch/s390/math-emu/math.c
arch/s390/math-emu/math.c
+1
-0
drivers/s390/char/sclp.c
drivers/s390/char/sclp.c
+2
-2
drivers/s390/cio/device_id.c
drivers/s390/cio/device_id.c
+1
-0
drivers/s390/cio/device_pgid.c
drivers/s390/cio/device_pgid.c
+1
-0
drivers/s390/cio/requestirq.c
drivers/s390/cio/requestirq.c
+2
-1
No files found.
arch/s390/kernel/entry.S
View file @
db165cde
...
...
@@ -290,13 +290,9 @@ ret_from_fork:
basr
%
r13
,
0
l
%
r13
,
.
Lentry_base
-
.
(%
r13
)
#
setup
base
pointer
to
&e
ntry_base
GET_THREAD_INFO
#
load
pointer
to
task_struct
to
R9
#if CONFIG_SMP || CONFIG_PREEMPT
l
%
r1
,
BASED
(
.
Lschedtail
)
la
%
r14
,
BASED
(
sysc_return
)
br
%
r1
#
call
schedule_tail
,
return
to
sysc_return
#else
b
BASED
(
sysc_return
)
#endif
#
#
clone
,
fork
,
vfork
,
exec
and
sigreturn
need
glue
,
...
...
@@ -973,8 +969,6 @@ restart_go:
.
Lsigaltstack
:
.
long
sys_sigaltstack
.
Ltrace
:
.
long
syscall_trace
.
Lvfork
:
.
long
sys_vfork
#if CONFIG_SMP || CONFIG_PREEMPT
.
Lschedtail
:
.
long
schedule_tail
#endif
arch/s390/kernel/setup.c
View file @
db165cde
...
...
@@ -41,6 +41,7 @@
#include <asm/smp.h>
#include <asm/mmu_context.h>
#include <asm/cpcmd.h>
#include <asm/lowcore.h>
/*
* Machine setup..
...
...
@@ -534,10 +535,14 @@ static int show_cpuinfo(struct seq_file *m, void *v)
(
loops_per_jiffy
/
(
5000
/
HZ
))
%
100
);
}
if
(
cpu_online_map
&
(
1
<<
n
))
{
#ifdef CONFIG_SMP
if
(
smp_processor_id
()
==
n
)
cpuinfo
=
&
S390_lowcore
.
cpu_data
;
else
cpuinfo
=
&
lowcore_ptr
[
n
]
->
cpu_data
;
#else
cpuinfo
=
&
S390_lowcore
.
cpu_data
;
#endif
seq_printf
(
m
,
"processor %li: "
"version = %02X, "
"identification = %06X, "
...
...
arch/s390/kernel/signal.c
View file @
db165cde
...
...
@@ -29,6 +29,7 @@
#include <linux/binfmts.h>
#include <asm/ucontext.h>
#include <asm/uaccess.h>
#include <asm/lowcore.h>
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
...
...
arch/s390/kernel/traps.c
View file @
db165cde
...
...
@@ -35,6 +35,7 @@
#include <asm/mathemu.h>
#include <asm/cpcmd.h>
#include <asm/s390_ext.h>
#include <asm/lowcore.h>
/* Called from entry.S only */
extern
void
handle_per_exception
(
struct
pt_regs
*
regs
);
...
...
arch/s390/math-emu/math.c
View file @
db165cde
...
...
@@ -14,6 +14,7 @@
#include <linux/sched.h>
#include <linux/mm.h>
#include <asm/uaccess.h>
#include <asm/lowcore.h>
#include "sfp-util.h"
#include <math-emu/soft-fp.h>
...
...
drivers/s390/char/sclp.c
View file @
db165cde
...
...
@@ -489,8 +489,8 @@ do_machine_quiesce(void)
{
psw_t
quiesce_psw
;
quiesce_psw
.
mask
=
_DW_PSW_MASK
;
qu
ei
sce_psw
.
addr
=
0xfff
;
quiesce_psw
.
mask
=
PSW_BASE_BITS
|
PSW_MASK_WAIT
;
qu
ie
sce_psw
.
addr
=
0xfff
;
__load_psw
(
quiesce_psw
);
}
#endif
...
...
drivers/s390/cio/device_id.c
View file @
db165cde
...
...
@@ -16,6 +16,7 @@
#include <asm/ccwdev.h>
#include <asm/delay.h>
#include <asm/cio.h>
#include <asm/lowcore.h>
#include "cio.h"
#include "cio_debug.h"
...
...
drivers/s390/cio/device_pgid.c
View file @
db165cde
...
...
@@ -16,6 +16,7 @@
#include <asm/ccwdev.h>
#include <asm/cio.h>
#include <asm/delay.h>
#include <asm/lowcore.h>
#include "cio.h"
#include "cio_debug.h"
...
...
drivers/s390/cio/requestirq.c
View file @
db165cde
/*
* drivers/s390/cio/requestirq.c
* S/390 common I/O routines -- enabling and disabling of devices
* $Revision: 1.4
2
$
* $Revision: 1.4
4
$
*
* Copyright (C) 1999-2002 IBM Deutschland Entwicklung GmbH,
* IBM Corporation
...
...
@@ -14,6 +14,7 @@
#include <linux/config.h>
#include <linux/device.h>
#include <linux/init.h>
#include <asm/lowcore.h>
#include "css.h"
...
...
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