Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ffc5fce9
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
ffc5fce9
编写于
4月 29, 2016
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'x86/urgent' into x86/asm, to refresh the tree
Signed-off-by:
N
Ingo Molnar
<
mingo@kernel.org
>
上级
b2eafe89
1bdb8970
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
11 addition
and
9 deletion
+11
-9
arch/x86/kernel/apic/vector.c
arch/x86/kernel/apic/vector.c
+2
-1
arch/x86/kernel/head_32.S
arch/x86/kernel/head_32.S
+0
-6
arch/x86/mm/setup_nx.c
arch/x86/mm/setup_nx.c
+3
-2
arch/x86/xen/spinlock.c
arch/x86/xen/spinlock.c
+6
-0
未找到文件。
arch/x86/kernel/apic/vector.c
浏览文件 @
ffc5fce9
...
...
@@ -256,7 +256,8 @@ static void clear_irq_vector(int irq, struct apic_chip_data *data)
struct
irq_desc
*
desc
;
int
cpu
,
vector
;
BUG_ON
(
!
data
->
cfg
.
vector
);
if
(
!
data
->
cfg
.
vector
)
return
;
vector
=
data
->
cfg
.
vector
;
for_each_cpu_and
(
cpu
,
data
->
domain
,
cpu_online_mask
)
...
...
arch/x86/kernel/head_32.S
浏览文件 @
ffc5fce9
...
...
@@ -389,12 +389,6 @@ default_entry:
/
*
Make
changes
effective
*/
wrmsr
/
*
*
And
make
sure
that
all
the
mappings
we
set
up
have
NX
set
from
*
the
beginning
.
*/
orl
$
(
1
<<
(
_PAGE_BIT_NX
-
32
)),
pa
(
__supported_pte_mask
+
4
)
enable_paging
:
/*
...
...
arch/x86/mm/setup_nx.c
浏览文件 @
ffc5fce9
...
...
@@ -32,8 +32,9 @@ early_param("noexec", noexec_setup);
void
x86_configure_nx
(
void
)
{
/* If disable_nx is set, clear NX on all new mappings going forward. */
if
(
disable_nx
)
if
(
boot_cpu_has
(
X86_FEATURE_NX
)
&&
!
disable_nx
)
__supported_pte_mask
|=
_PAGE_NX
;
else
__supported_pte_mask
&=
~
_PAGE_NX
;
}
...
...
arch/x86/xen/spinlock.c
浏览文件 @
ffc5fce9
...
...
@@ -27,6 +27,12 @@ static bool xen_pvspin = true;
static
void
xen_qlock_kick
(
int
cpu
)
{
int
irq
=
per_cpu
(
lock_kicker_irq
,
cpu
);
/* Don't kick if the target's kicker interrupt is not initialized. */
if
(
irq
==
-
1
)
return
;
xen_send_IPI_one
(
cpu
,
XEN_SPIN_UNLOCK_VECTOR
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录