Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
9fd4d059
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看板
提交
9fd4d059
编写于
5月 17, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[readdir] convert omfs
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
1616abe8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
38 addition
and
56 deletion
+38
-56
fs/omfs/dir.c
fs/omfs/dir.c
+38
-56
未找到文件。
fs/omfs/dir.c
浏览文件 @
9fd4d059
...
...
@@ -327,26 +327,23 @@ int omfs_is_bad(struct omfs_sb_info *sbi, struct omfs_header *header,
return
is_bad
;
}
static
int
omfs_fill_chain
(
struct
file
*
filp
,
void
*
dirent
,
filldir_t
filldir
,
static
bool
omfs_fill_chain
(
struct
inode
*
dir
,
struct
dir_context
*
ctx
,
u64
fsblock
,
int
hindex
)
{
struct
inode
*
dir
=
file_inode
(
filp
);
struct
buffer_head
*
bh
;
struct
omfs_inode
*
oi
;
u64
self
;
int
res
=
0
;
unsigned
char
d_type
;
/* follow chain in this bucket */
while
(
fsblock
!=
~
0
)
{
bh
=
omfs_bread
(
dir
->
i_sb
,
fsblock
);
struct
buffer_head
*
bh
=
omfs_bread
(
dir
->
i_sb
,
fsblock
);
struct
omfs_inode
*
oi
;
u64
self
;
unsigned
char
d_type
;
if
(
!
bh
)
goto
out
;
return
true
;
oi
=
(
struct
omfs_inode
*
)
bh
->
b_data
;
if
(
omfs_is_bad
(
OMFS_SB
(
dir
->
i_sb
),
&
oi
->
i_head
,
fsblock
))
{
brelse
(
bh
);
goto
out
;
return
true
;
}
self
=
fsblock
;
...
...
@@ -361,15 +358,16 @@ static int omfs_fill_chain(struct file *filp, void *dirent, filldir_t filldir,
d_type
=
(
oi
->
i_type
==
OMFS_DIR
)
?
DT_DIR
:
DT_REG
;
res
=
filldir
(
dirent
,
oi
->
i_name
,
strnlen
(
oi
->
i_name
,
OMFS_NAMELEN
),
filp
->
f_pos
,
self
,
d_type
);
if
(
!
dir_emit
(
ctx
,
oi
->
i_name
,
strnlen
(
oi
->
i_name
,
OMFS_NAMELEN
),
self
,
d_type
))
{
brelse
(
bh
);
return
false
;
}
brelse
(
bh
);
if
(
res
<
0
)
break
;
filp
->
f_pos
++
;
ctx
->
pos
++
;
}
out:
return
res
;
return
true
;
}
static
int
omfs_rename
(
struct
inode
*
old_dir
,
struct
dentry
*
old_dentry
,
...
...
@@ -403,60 +401,44 @@ static int omfs_rename(struct inode *old_dir, struct dentry *old_dentry,
return
err
;
}
static
int
omfs_readdir
(
struct
file
*
fil
p
,
void
*
dirent
,
filldir_t
filldir
)
static
int
omfs_readdir
(
struct
file
*
fil
e
,
struct
dir_context
*
ctx
)
{
struct
inode
*
dir
=
file_inode
(
fil
p
);
struct
inode
*
dir
=
file_inode
(
fil
e
);
struct
buffer_head
*
bh
;
loff_t
offset
,
res
;
__be64
*
p
;
unsigned
int
hchain
,
hindex
;
int
nbuckets
;
u64
fsblock
;
int
ret
=
-
EINVAL
;
if
(
filp
->
f_pos
>>
32
)
goto
success
;
switch
((
unsigned
long
)
filp
->
f_pos
)
{
case
0
:
if
(
filldir
(
dirent
,
"."
,
1
,
0
,
dir
->
i_ino
,
DT_DIR
)
<
0
)
goto
success
;
filp
->
f_pos
++
;
/* fall through */
case
1
:
if
(
filldir
(
dirent
,
".."
,
2
,
1
,
parent_ino
(
filp
->
f_dentry
),
DT_DIR
)
<
0
)
goto
success
;
filp
->
f_pos
=
1
<<
20
;
/* fall through */
if
(
ctx
->
pos
>>
32
)
return
-
EINVAL
;
if
(
ctx
->
pos
<
1
<<
20
)
{
if
(
!
dir_emit_dots
(
file
,
ctx
))
return
0
;
ctx
->
pos
=
1
<<
20
;
}
nbuckets
=
(
dir
->
i_size
-
OMFS_DIR_START
)
/
8
;
/* high 12 bits store bucket + 1 and low 20 bits store hash index */
hchain
=
(
filp
->
f_
pos
>>
20
)
-
1
;
hindex
=
filp
->
f_
pos
&
0xfffff
;
hchain
=
(
ctx
->
pos
>>
20
)
-
1
;
hindex
=
ctx
->
pos
&
0xfffff
;
bh
=
omfs_bread
(
dir
->
i_sb
,
dir
->
i_ino
);
if
(
!
bh
)
goto
out
;
return
-
EINVAL
;
offset
=
OMFS_DIR_START
+
hchain
*
8
;
p
=
(
__be64
*
)(
bh
->
b_data
+
OMFS_DIR_START
)
+
hchain
;
for
(;
hchain
<
nbuckets
;
hchain
++
,
offset
+=
8
)
{
fsblock
=
be64_to_cpu
(
*
((
__be64
*
)
&
bh
->
b_data
[
offset
]));
res
=
omfs_fill_chain
(
filp
,
dirent
,
filldir
,
fsblock
,
hindex
);
hindex
=
0
;
if
(
res
<
0
)
for
(;
hchain
<
nbuckets
;
hchain
++
)
{
__u64
fsblock
=
be64_to_cpu
(
*
p
++
);
if
(
!
omfs_fill_chain
(
dir
,
ctx
,
fsblock
,
hindex
))
break
;
filp
->
f_
pos
=
(
hchain
+
2
)
<<
20
;
hindex
=
0
;
ctx
->
pos
=
(
hchain
+
2
)
<<
20
;
}
brelse
(
bh
);
success:
ret
=
0
;
out:
return
ret
;
return
0
;
}
const
struct
inode_operations
omfs_dir_inops
=
{
...
...
@@ -470,6 +452,6 @@ const struct inode_operations omfs_dir_inops = {
const
struct
file_operations
omfs_dir_operations
=
{
.
read
=
generic_read_dir
,
.
readdir
=
omfs_readdir
,
.
iterate
=
omfs_readdir
,
.
llseek
=
generic_file_llseek
,
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录