Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
cc71229f
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,发现更多精彩内容 >>
提交
cc71229f
编写于
3月 19, 2005
作者:
T
Thomas Gleixner
提交者:
Thomas Gleixner
5月 23, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MTD] block2mtd: Fix incompatible pointer type
Signed-off-by:
N
Thomas Gleixner
<
tglx@linutronix.de
>
上级
50da7f60
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
9 deletion
+8
-9
drivers/mtd/devices/block2mtd.c
drivers/mtd/devices/block2mtd.c
+8
-9
未找到文件。
drivers/mtd/devices/block2mtd.c
浏览文件 @
cc71229f
/*
* $Id: block2mtd.c,v 1.2
5 2005/03/07 20:29:05 joern
Exp $
* $Id: block2mtd.c,v 1.2
8 2005/03/19 22:40:44 gleixner
Exp $
*
* block2mtd.c - create an mtd from a block device
*
...
...
@@ -19,7 +19,7 @@
#include <linux/mtd/mtd.h>
#include <linux/buffer_head.h>
#define VERSION "$Revision: 1.2
4
$"
#define VERSION "$Revision: 1.2
8
$"
#define ERROR(fmt, args...) printk(KERN_ERR "block2mtd: " fmt "\n" , ## args)
...
...
@@ -88,7 +88,6 @@ void cache_readahead(struct address_space *mapping, int index)
static
struct
page
*
page_readahead
(
struct
address_space
*
mapping
,
int
index
)
{
filler_t
*
filler
=
(
filler_t
*
)
mapping
->
a_ops
->
readpage
;
//do_page_cache_readahead(mapping, index, XXX, 64);
cache_readahead
(
mapping
,
index
);
return
read_cache_page
(
mapping
,
index
,
filler
,
NULL
);
}
...
...
@@ -369,16 +368,16 @@ static int ustrtoul(const char *cp, char **endp, unsigned int base)
}
static
int
parse_num
32
(
u32
*
num32
,
const
char
*
token
)
static
int
parse_num
(
size_t
*
num
,
const
char
*
token
)
{
char
*
endp
;
unsigned
long
n
;
size_t
n
;
n
=
ustrtoul
(
token
,
&
endp
,
0
);
n
=
(
size_t
)
ustrtoul
(
token
,
&
endp
,
0
);
if
(
*
endp
)
return
-
EINVAL
;
*
num
32
=
n
;
*
num
=
n
;
return
0
;
}
...
...
@@ -421,7 +420,7 @@ static int block2mtd_setup(const char *val, struct kernel_param *kp)
char
buf
[
80
+
12
],
*
str
=
buf
;
/* 80 for device, 12 for erase size */
char
*
token
[
2
];
char
*
name
;
u32
erase_size
=
PAGE_SIZE
;
size_t
erase_size
=
PAGE_SIZE
;
int
i
,
ret
;
if
(
strnlen
(
val
,
sizeof
(
buf
))
>=
sizeof
(
buf
))
...
...
@@ -448,7 +447,7 @@ static int block2mtd_setup(const char *val, struct kernel_param *kp)
return
0
;
if
(
token
[
1
])
{
ret
=
parse_num
32
(
&
erase_size
,
token
[
1
]);
ret
=
parse_num
(
&
erase_size
,
token
[
1
]);
if
(
ret
)
parse_err
(
"illegal erase size"
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录