Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
c101f313
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 2 年 前同步成功
通知
173
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看板
提交
c101f313
编写于
7月 06, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
上级
359ea2f1
e3e01d60
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
8 addition
and
6 deletion
+8
-6
MAINTAINERS
MAINTAINERS
+1
-1
arch/sparc64/kernel/irq.c
arch/sparc64/kernel/irq.c
+5
-2
drivers/media/dvb/frontends/tda80xx.c
drivers/media/dvb/frontends/tda80xx.c
+0
-1
include/asm-sparc64/parport.h
include/asm-sparc64/parport.h
+2
-2
未找到文件。
MAINTAINERS
浏览文件 @
c101f313
...
...
@@ -2161,7 +2161,7 @@ UltraSPARC (sparc64):
P: David S. Miller
M: davem@davemloft.net
P: Eddie C. Dost
M: ecd@
skynet.b
e
M: ecd@
brainaid.d
e
P: Jakub Jelinek
M: jj@sunsite.ms.mff.cuni.cz
P: Anton Blanchard
...
...
arch/sparc64/kernel/irq.c
浏览文件 @
c101f313
...
...
@@ -917,7 +917,8 @@ static int irq_affinity_read_proc (char *page, char **start, off_t off,
int
count
,
int
*
eof
,
void
*
data
)
{
struct
ino_bucket
*
bp
=
ivector_table
+
(
long
)
data
;
struct
irqaction
*
ap
=
bp
->
irq_info
;
struct
irq_desc
*
desc
=
bp
->
irq_info
;
struct
irqaction
*
ap
=
desc
->
action
;
cpumask_t
mask
;
int
len
;
...
...
@@ -935,11 +936,13 @@ static int irq_affinity_read_proc (char *page, char **start, off_t off,
static
inline
void
set_intr_affinity
(
int
irq
,
cpumask_t
hw_aff
)
{
struct
ino_bucket
*
bp
=
ivector_table
+
irq
;
struct
irq_desc
*
desc
=
bp
->
irq_info
;
struct
irqaction
*
ap
=
desc
->
action
;
/* Users specify affinity in terms of hw cpu ids.
* As soon as we do this, handler_irq() might see and take action.
*/
put_smpaff_in_irqaction
(
(
struct
irqaction
*
)
bp
->
irq_info
,
hw_aff
);
put_smpaff_in_irqaction
(
ap
,
hw_aff
);
/* Migration is simply done by the next cpu to service this
* interrupt.
...
...
drivers/media/dvb/frontends/tda80xx.c
浏览文件 @
c101f313
...
...
@@ -27,7 +27,6 @@
#include <linux/spinlock.h>
#include <linux/threads.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
...
...
include/asm-sparc64/parport.h
浏览文件 @
c101f313
...
...
@@ -27,12 +27,12 @@ static struct sparc_ebus_info {
static
__inline__
void
enable_dma
(
unsigned
int
dmanr
)
{
ebus_dma_enable
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
1
);
if
(
ebus_dma_request
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
sparc_ebus_dmas
[
dmanr
].
addr
,
sparc_ebus_dmas
[
dmanr
].
count
))
BUG
();
ebus_dma_enable
(
&
sparc_ebus_dmas
[
dmanr
].
info
,
1
);
}
static
__inline__
void
disable_dma
(
unsigned
int
dmanr
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录