Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d4accd60
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看板
提交
d4accd60
编写于
11月 30, 2006
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC]: Check kzalloc() return value in SUN4D irq/iommu init.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
c80892d1
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
9 addition
and
0 deletion
+9
-0
arch/sparc/kernel/sun4d_irq.c
arch/sparc/kernel/sun4d_irq.c
+4
-0
arch/sparc/mm/io-unit.c
arch/sparc/mm/io-unit.c
+5
-0
未找到文件。
arch/sparc/kernel/sun4d_irq.c
浏览文件 @
d4accd60
...
@@ -546,6 +546,10 @@ void __init sun4d_init_sbi_irq(void)
...
@@ -546,6 +546,10 @@ void __init sun4d_init_sbi_irq(void)
for_each_sbus
(
sbus
)
for_each_sbus
(
sbus
)
nsbi
++
;
nsbi
++
;
sbus_actions
=
kzalloc
(
nsbi
*
8
*
4
*
sizeof
(
struct
sbus_action
),
GFP_ATOMIC
);
sbus_actions
=
kzalloc
(
nsbi
*
8
*
4
*
sizeof
(
struct
sbus_action
),
GFP_ATOMIC
);
if
(
!
sbus_actions
)
{
prom_printf
(
"SUN4D: Cannot allocate sbus_actions, halting.
\n
"
);
prom_halt
();
}
for_each_sbus
(
sbus
)
{
for_each_sbus
(
sbus
)
{
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
extern
unsigned
char
boot_cpu_id
;
extern
unsigned
char
boot_cpu_id
;
...
...
arch/sparc/mm/io-unit.c
浏览文件 @
d4accd60
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <asm/cacheflush.h>
#include <asm/cacheflush.h>
#include <asm/tlbflush.h>
#include <asm/tlbflush.h>
#include <asm/dma.h>
#include <asm/dma.h>
#include <asm/oplib.h>
/* #define IOUNIT_DEBUG */
/* #define IOUNIT_DEBUG */
#ifdef IOUNIT_DEBUG
#ifdef IOUNIT_DEBUG
...
@@ -42,6 +43,10 @@ iounit_init(int sbi_node, int io_node, struct sbus_bus *sbus)
...
@@ -42,6 +43,10 @@ iounit_init(int sbi_node, int io_node, struct sbus_bus *sbus)
struct
resource
r
;
struct
resource
r
;
iounit
=
kzalloc
(
sizeof
(
struct
iounit_struct
),
GFP_ATOMIC
);
iounit
=
kzalloc
(
sizeof
(
struct
iounit_struct
),
GFP_ATOMIC
);
if
(
!
iounit
)
{
prom_printf
(
"SUN4D: Cannot alloc iounit, halting.
\n
"
);
prom_halt
();
}
iounit
->
limit
[
0
]
=
IOUNIT_BMAP1_START
;
iounit
->
limit
[
0
]
=
IOUNIT_BMAP1_START
;
iounit
->
limit
[
1
]
=
IOUNIT_BMAP2_START
;
iounit
->
limit
[
1
]
=
IOUNIT_BMAP2_START
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录