Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
68c61471
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看板
提交
68c61471
编写于
5月 16, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[readdir] convert openpromfs
what the hell is op_mutex for, BTW? Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
7aa123a0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
44 addition
and
51 deletion
+44
-51
fs/openpromfs/inode.c
fs/openpromfs/inode.c
+44
-51
未找到文件。
fs/openpromfs/inode.c
浏览文件 @
68c61471
...
...
@@ -162,11 +162,11 @@ static const struct file_operations openpromfs_prop_ops = {
.
release
=
seq_release
,
};
static
int
openpromfs_readdir
(
struct
file
*
,
void
*
,
filldir_t
);
static
int
openpromfs_readdir
(
struct
file
*
,
struct
dir_context
*
);
static
const
struct
file_operations
openprom_operations
=
{
.
read
=
generic_read_dir
,
.
readdir
=
openpromfs_readdir
,
.
iterate
=
openpromfs_readdir
,
.
llseek
=
generic_file_llseek
,
};
...
...
@@ -260,71 +260,64 @@ static struct dentry *openpromfs_lookup(struct inode *dir, struct dentry *dentry
return
NULL
;
}
static
int
openpromfs_readdir
(
struct
file
*
filp
,
void
*
dirent
,
filldir_t
filldir
)
static
int
openpromfs_readdir
(
struct
file
*
file
,
struct
dir_context
*
ctx
)
{
struct
inode
*
inode
=
file_inode
(
fil
p
);
struct
inode
*
inode
=
file_inode
(
fil
e
);
struct
op_inode_info
*
oi
=
OP_I
(
inode
);
struct
device_node
*
dp
=
oi
->
u
.
node
;
struct
device_node
*
child
;
struct
property
*
prop
;
unsigned
int
ino
;
int
i
;
mutex_lock
(
&
op_mutex
);
ino
=
inode
->
i_ino
;
i
=
filp
->
f_pos
;
switch
(
i
)
{
case
0
:
if
(
filldir
(
dirent
,
"."
,
1
,
i
,
ino
,
DT_DIR
)
<
0
)
if
(
ctx
->
pos
==
0
)
{
if
(
!
dir_emit
(
ctx
,
"."
,
1
,
inode
->
i_ino
,
DT_DIR
))
goto
out
;
i
++
;
filp
->
f_pos
++
;
/* fall thru */
case
1
:
if
(
filldir
(
dirent
,
".."
,
2
,
i
,
ctx
->
pos
=
1
;
}
if
(
ctx
->
pos
==
1
)
{
if
(
!
dir_emit
(
ctx
,
".."
,
2
,
(
dp
->
parent
==
NULL
?
OPENPROM_ROOT_INO
:
dp
->
parent
->
unique_id
),
DT_DIR
)
<
0
)
dp
->
parent
->
unique_id
),
DT_DIR
)
)
goto
out
;
i
++
;
filp
->
f_pos
++
;
/* fall thru */
default:
i
-=
2
;
/* First, the children nodes as directories. */
child
=
dp
->
child
;
while
(
i
&&
child
)
{
child
=
child
->
sibling
;
i
--
;
}
while
(
child
)
{
if
(
filldir
(
dirent
,
child
->
path_component_name
,
strlen
(
child
->
path_component_name
),
filp
->
f_pos
,
child
->
unique_id
,
DT_DIR
)
<
0
)
goto
out
;
filp
->
f_pos
++
;
child
=
child
->
sibling
;
}
ctx
->
pos
=
2
;
}
i
=
ctx
->
pos
-
2
;
/* Next, the properties as files. */
prop
=
dp
->
properties
;
while
(
i
&&
prop
)
{
prop
=
prop
->
next
;
i
--
;
}
while
(
prop
)
{
if
(
filldir
(
dirent
,
prop
->
name
,
strlen
(
prop
->
name
),
filp
->
f_pos
,
prop
->
unique_id
,
DT_REG
)
<
0
)
goto
out
;
/* First, the children nodes as directories. */
child
=
dp
->
child
;
while
(
i
&&
child
)
{
child
=
child
->
sibling
;
i
--
;
}
while
(
child
)
{
if
(
!
dir_emit
(
ctx
,
child
->
path_component_name
,
strlen
(
child
->
path_component_name
),
child
->
unique_id
,
DT_DIR
))
goto
out
;
filp
->
f_pos
++
;
prop
=
prop
->
next
;
}
ctx
->
pos
++
;
child
=
child
->
sibling
;
}
/* Next, the properties as files. */
prop
=
dp
->
properties
;
while
(
i
&&
prop
)
{
prop
=
prop
->
next
;
i
--
;
}
while
(
prop
)
{
if
(
!
dir_emit
(
ctx
,
prop
->
name
,
strlen
(
prop
->
name
),
prop
->
unique_id
,
DT_REG
))
goto
out
;
ctx
->
pos
++
;
prop
=
prop
->
next
;
}
out:
mutex_unlock
(
&
op_mutex
);
return
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录