Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
862aad56
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,发现更多精彩内容 >>
提交
862aad56
编写于
9月 12, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6
上级
cc6120c6
d58dde0f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
14 addition
and
12 deletion
+14
-12
Documentation/aoe/mkshelf.sh
Documentation/aoe/mkshelf.sh
+4
-2
Documentation/firmware_class/firmware_sample_driver.c
Documentation/firmware_class/firmware_sample_driver.c
+4
-4
drivers/block/aoe/aoe.h
drivers/block/aoe/aoe.h
+6
-6
未找到文件。
Documentation/aoe/mkshelf.sh
浏览文件 @
862aad56
...
...
@@ -8,13 +8,15 @@ fi
n_partitions
=
${
n_partitions
:-
16
}
dir
=
$1
shelf
=
$2
nslots
=
16
maxslot
=
`
echo
$nslots
1 - p | dc
`
MAJOR
=
152
set
-e
minor
=
`
echo
10
\*
$shelf
\*
$n_partitions
| bc
`
minor
=
`
echo
$nslots
\*
$shelf
\*
$n_partitions
| bc
`
endp
=
`
echo
$n_partitions
- 1 | bc
`
for
slot
in
`
seq
0
9
`
;
do
for
slot
in
`
seq
0
$maxslot
`
;
do
for
part
in
`
seq
0
$endp
`
;
do
name
=
e
$shelf
.
$slot
test
"
$part
"
!=
"0"
&&
name
=
${
name
}
p
$part
...
...
Documentation/firmware_class/firmware_sample_driver.c
浏览文件 @
862aad56
...
...
@@ -32,14 +32,14 @@ static void sample_firmware_load(char *firmware, int size)
u8
buf
[
size
+
1
];
memcpy
(
buf
,
firmware
,
size
);
buf
[
size
]
=
'\0'
;
printk
(
"firmware_sample_driver: firmware: %s
\n
"
,
buf
);
printk
(
KERN_INFO
"firmware_sample_driver: firmware: %s
\n
"
,
buf
);
}
static
void
sample_probe_default
(
void
)
{
/* uses the default method to get the firmware */
const
struct
firmware
*
fw_entry
;
printk
(
"firmware_sample_driver: a ghost device got inserted :)
\n
"
);
printk
(
KERN_INFO
"firmware_sample_driver: a ghost device got inserted :)
\n
"
);
if
(
request_firmware
(
&
fw_entry
,
"sample_driver_fw"
,
&
ghost_device
)
!=
0
)
{
...
...
@@ -61,7 +61,7 @@ static void sample_probe_specific(void)
/* NOTE: This currently doesn't work */
printk
(
"firmware_sample_driver: a ghost device got inserted :)
\n
"
);
printk
(
KERN_INFO
"firmware_sample_driver: a ghost device got inserted :)
\n
"
);
if
(
request_firmware
(
NULL
,
"sample_driver_fw"
,
&
ghost_device
)
!=
0
)
{
...
...
@@ -83,7 +83,7 @@ static void sample_probe_async_cont(const struct firmware *fw, void *context)
return
;
}
printk
(
"firmware_sample_driver: device pointer
\"
%s
\"\n
"
,
printk
(
KERN_INFO
"firmware_sample_driver: device pointer
\"
%s
\"\n
"
,
(
char
*
)
context
);
sample_firmware_load
(
fw
->
data
,
fw
->
size
);
}
...
...
drivers/block/aoe/aoe.h
浏览文件 @
862aad56
/* Copyright (c) 2004 Coraid, Inc. See COPYING for GPL terms. */
#define VERSION "1
0
"
#define VERSION "1
2
"
#define AOE_MAJOR 152
#define DEVICE_NAME "aoe"
...
...
@@ -7,12 +7,12 @@
* default is 16, which is 15 partitions plus the whole disk
*/
#ifndef AOE_PARTITIONS
#define AOE_PARTITIONS
16
#define AOE_PARTITIONS
(16)
#endif
#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) *
10
+ (aoeminor))
#define AOEMAJOR(sysminor) ((sysminor) /
10
)
#define AOEMINOR(sysminor) ((sysminor) %
10
)
#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) *
NPERSHELF
+ (aoeminor))
#define AOEMAJOR(sysminor) ((sysminor) /
NPERSHELF
)
#define AOEMINOR(sysminor) ((sysminor) %
NPERSHELF
)
#define WHITESPACE " \t\v\f\n"
enum
{
...
...
@@ -83,7 +83,7 @@ enum {
enum
{
MAXATADATA
=
1024
,
NPERSHELF
=
1
0
,
NPERSHELF
=
1
6
,
/* number of slots per shelf address */
FREETAG
=
-
1
,
MIN_BUFS
=
8
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录