Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e1ef8241
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e1ef8241
编写于
2月 10, 2011
作者:
T
Thomas Gleixner
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
genirq: Reflect IRQ_MOVE_PCNTXT in irq_data state
Required by x86. Signed-off-by:
N
Thomas Gleixner
<
tglx@linutronix.de
>
上级
7f94226f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
1 deletion
+11
-1
include/linux/irq.h
include/linux/irq.h
+8
-0
kernel/irq/chip.c
kernel/irq/chip.c
+3
-1
未找到文件。
include/linux/irq.h
浏览文件 @
e1ef8241
...
...
@@ -170,6 +170,8 @@ struct irq_data {
* IRQD_LEVEL - Interrupt is level triggered
* IRQD_WAKEUP_STATE - Interrupt is configured for wakeup
* from suspend
* IRDQ_MOVE_PCNTXT - Interrupt can be moved in process
* context
*/
enum
{
IRQD_TRIGGER_MASK
=
0xf
,
...
...
@@ -179,6 +181,7 @@ enum {
IRQD_AFFINITY_SET
=
(
1
<<
12
),
IRQD_LEVEL
=
(
1
<<
13
),
IRQD_WAKEUP_STATE
=
(
1
<<
14
),
IRQD_MOVE_PCNTXT
=
(
1
<<
15
),
};
static
inline
bool
irqd_is_setaffinity_pending
(
struct
irq_data
*
d
)
...
...
@@ -225,6 +228,11 @@ static inline bool irqd_is_wakeup_set(struct irq_data *d)
return
d
->
state_use_accessors
&
IRQD_WAKEUP_STATE
;
}
static
inline
bool
irqd_can_move_in_process_context
(
struct
irq_data
*
d
)
{
return
d
->
state_use_accessors
&
IRQD_MOVE_PCNTXT
;
}
/**
* struct irq_chip - hardware interrupt chip descriptor
*
...
...
kernel/irq/chip.c
浏览文件 @
e1ef8241
...
...
@@ -712,11 +712,13 @@ void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)
irq_settings_clr_and_set
(
desc
,
clr
,
set
);
irqd_clear
(
&
desc
->
irq_data
,
IRQD_NO_BALANCING
|
IRQD_PER_CPU
|
IRQD_TRIGGER_MASK
|
IRQD_LEVEL
);
IRQD_TRIGGER_MASK
|
IRQD_LEVEL
|
IRQD_MOVE_PCNTXT
);
if
(
irq_settings_has_no_balance_set
(
desc
))
irqd_set
(
&
desc
->
irq_data
,
IRQD_NO_BALANCING
);
if
(
irq_settings_is_per_cpu
(
desc
))
irqd_set
(
&
desc
->
irq_data
,
IRQD_PER_CPU
);
if
(
irq_settings_can_move_pcntxt
(
desc
))
irqd_set
(
&
desc
->
irq_data
,
IRQD_MOVE_PCNTXT
);
irqd_set
(
&
desc
->
irq_data
,
irq_settings_get_trigger_mask
(
desc
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录