Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d9ae2bad
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
d9ae2bad
编写于
11月 10, 2005
作者:
S
Stephen Rothwell
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
powerpc: make iSeries use generic virtual irq mapping
Signed-off-by:
N
Stephen Rothwell
<
sfr@canb.auug.org.au
>
上级
4ba529a8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
25 deletion
+3
-25
arch/powerpc/kernel/irq.c
arch/powerpc/kernel/irq.c
+0
-3
arch/powerpc/platforms/iseries/irq.c
arch/powerpc/platforms/iseries/irq.c
+3
-22
未找到文件。
arch/powerpc/kernel/irq.c
浏览文件 @
d9ae2bad
...
...
@@ -311,7 +311,6 @@ void __init init_IRQ(void)
}
#ifdef CONFIG_PPC64
#ifndef CONFIG_PPC_ISERIES
/*
* Virtual IRQ mapping code, used on systems with XICS interrupt controllers.
*/
...
...
@@ -420,8 +419,6 @@ unsigned int real_irq_to_virt_slowpath(unsigned int real_irq)
}
#endif
/* CONFIG_PPC_ISERIES */
#ifdef CONFIG_IRQSTACKS
struct
thread_info
*
softirq_ctx
[
NR_CPUS
];
struct
thread_info
*
hardirq_ctx
[
NR_CPUS
];
...
...
arch/powerpc/platforms/iseries/irq.c
浏览文件 @
d9ae2bad
...
...
@@ -42,13 +42,6 @@
#include "irq.h"
#include "call_pci.h"
/* This maps virtual irq numbers to real irqs */
unsigned
int
virt_irq_to_real_map
[
NR_IRQS
];
/* The next available virtual irq number */
/* Note: the pcnet32 driver assumes irq numbers < 2 aren't valid. :( */
static
int
next_virtual_irq
=
2
;
static
long
Pci_Interrupt_Count
;
static
long
Pci_Event_Count
;
...
...
@@ -350,26 +343,14 @@ static hw_irq_controller iSeries_IRQ_handler = {
int
__init
iSeries_allocate_IRQ
(
HvBusNumber
busNumber
,
HvSubBusNumber
subBusNumber
,
HvAgentId
deviceId
)
{
unsigned
int
realirq
,
virtirq
;
int
virtirq
;
unsigned
int
realirq
;
u8
idsel
=
(
deviceId
>>
4
);
u8
function
=
deviceId
&
7
;
virtirq
=
next_virtual_irq
++
;
realirq
=
((
busNumber
-
1
)
<<
6
)
+
((
idsel
-
1
)
<<
3
)
+
function
;
virt
_irq_to_real_map
[
virtirq
]
=
realirq
;
virt
irq
=
virt_irq_create_mapping
(
realirq
)
;
irq_desc
[
virtirq
].
handler
=
&
iSeries_IRQ_handler
;
return
virtirq
;
}
int
virt_irq_create_mapping
(
unsigned
int
real_irq
)
{
BUG
();
/* Don't call this on iSeries, yet */
return
0
;
}
void
virt_irq_init
(
void
)
{
return
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录