Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
da292bbe
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
da292bbe
编写于
3月 26, 2009
作者:
M
Martin Schwidefsky
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[S390] eliminate ipl_device from lowcore
Signed-off-by:
N
Martin Schwidefsky
<
schwidefsky@de.ibm.com
>
上级
7b468488
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
2 addition
and
10 deletion
+2
-10
arch/s390/include/asm/lowcore.h
arch/s390/include/asm/lowcore.h
+2
-6
arch/s390/kernel/head31.S
arch/s390/kernel/head31.S
+0
-1
arch/s390/kernel/head64.S
arch/s390/kernel/head64.S
+0
-1
arch/s390/kernel/setup.c
arch/s390/kernel/setup.c
+0
-1
arch/s390/kernel/smp.c
arch/s390/kernel/smp.c
+0
-1
未找到文件。
arch/s390/include/asm/lowcore.h
浏览文件 @
da292bbe
...
...
@@ -80,7 +80,6 @@
#define __LC_USER_ASCE 0xC50
#define __LC_PANIC_STACK 0xC54
#define __LC_CPUID 0xC60
#define __LC_IPLDEV 0xC7C
#define __LC_CURRENT 0xC90
#define __LC_INT_CLOCK 0xC98
#else
/* __s390x__ */
...
...
@@ -101,7 +100,6 @@
#define __LC_USER_ASCE 0xD60
#define __LC_PANIC_STACK 0xD68
#define __LC_CPUID 0xD80
#define __LC_IPLDEV 0xDB8
#define __LC_CURRENT 0xDD8
#define __LC_INT_CLOCK 0xDE8
#define __LC_VDSO_PER_CPU 0xE38
...
...
@@ -273,8 +271,7 @@ struct _lowcore
/* entry.S sensitive area start */
cpuid_t
cpu_id
;
/* 0xc60 */
__u32
cpu_nr
;
/* 0xc68 */
__u32
ipl_device
;
/* 0xc6c */
__u8
pad_0xc70
[
0xc80
-
0xc70
];
/* 0xc70 */
__u8
pad_0xc6c
[
0xc80
-
0xc6c
];
/* 0xc6c */
/* entry.S sensitive area end */
/* SMP info area: defined by DJB */
...
...
@@ -368,8 +365,7 @@ struct _lowcore
/* entry.S sensitive area start */
cpuid_t
cpu_id
;
/* 0xd80 */
__u32
cpu_nr
;
/* 0xd88 */
__u32
ipl_device
;
/* 0xd8c */
__u8
pad_0xd90
[
0xdc0
-
0xd90
];
/* 0xd90 */
__u8
pad_0xd8c
[
0xdc0
-
0xd8c
];
/* 0xd8c */
/* entry.S sensitive area end */
/* SMP info area: defined by DJB */
...
...
arch/s390/kernel/head31.S
浏览文件 @
da292bbe
...
...
@@ -20,7 +20,6 @@ startup_continue:
lctl
%
c0
,%
c15
,
.
Lctl
-
.
LPG1
(%
r13
)
#
load
control
registers
l
%
r12
,
.
Lparmaddr
-
.
LPG1
(%
r13
)
#
pointer
to
parameter
area
#
move
IPL
device
to
lowcore
mvc
__LC_IPLDEV
(
4
),
IPL_DEVICE
-
PARMAREA
(%
r12
)
#
#
Setup
stack
#
...
...
arch/s390/kernel/head64.S
浏览文件 @
da292bbe
...
...
@@ -86,7 +86,6 @@ startup_continue:
lctlg
%
c0
,%
c15
,
.
Lctl
-
.
LPG1
(%
r13
)
#
load
control
registers
lg
%
r12
,
.
Lparmaddr
-
.
LPG1
(%
r13
)
#
pointer
to
parameter
area
#
move
IPL
device
to
lowcore
mvc
__LC_IPLDEV
(
4
),
IPL_DEVICE
+
4
-
PARMAREA
(%
r12
)
lghi
%
r0
,
__LC_PASTE
stg
%
r0
,
__LC_VDSO_PER_CPU
#
...
...
arch/s390/kernel/setup.c
浏览文件 @
da292bbe
...
...
@@ -419,7 +419,6 @@ setup_lowcore(void)
PSW_ADDR_AMODE
|
(
unsigned
long
)
mcck_int_handler
;
lc
->
io_new_psw
.
mask
=
psw_kernel_bits
;
lc
->
io_new_psw
.
addr
=
PSW_ADDR_AMODE
|
(
unsigned
long
)
io_int_handler
;
lc
->
ipl_device
=
S390_lowcore
.
ipl_device
;
lc
->
clock_comparator
=
-
1ULL
;
lc
->
kernel_stack
=
((
unsigned
long
)
&
init_thread_union
)
+
THREAD_SIZE
;
lc
->
async_stack
=
(
unsigned
long
)
...
...
arch/s390/kernel/smp.c
浏览文件 @
da292bbe
...
...
@@ -566,7 +566,6 @@ int __cpuinit __cpu_up(unsigned int cpu)
cpu_lowcore
->
current_task
=
(
unsigned
long
)
idle
;
cpu_lowcore
->
cpu_nr
=
cpu
;
cpu_lowcore
->
kernel_asce
=
S390_lowcore
.
kernel_asce
;
cpu_lowcore
->
ipl_device
=
S390_lowcore
.
ipl_device
;
eieio
();
while
(
signal_processor
(
cpu
,
sigp_restart
)
==
sigp_busy
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录