Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
75811d4f
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看板
提交
75811d4f
编写于
5月 16, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[readdir] convert exofs
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
81b9f66e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
22 deletion
+16
-22
fs/exofs/dir.c
fs/exofs/dir.c
+16
-22
未找到文件。
fs/exofs/dir.c
浏览文件 @
75811d4f
...
@@ -239,22 +239,19 @@ void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode)
...
@@ -239,22 +239,19 @@ void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode)
}
}
static
int
static
int
exofs_readdir
(
struct
file
*
fil
p
,
void
*
dirent
,
filldir_t
filldir
)
exofs_readdir
(
struct
file
*
fil
e
,
struct
dir_context
*
ctx
)
{
{
loff_t
pos
=
filp
->
f_
pos
;
loff_t
pos
=
ctx
->
pos
;
struct
inode
*
inode
=
file_inode
(
fil
p
);
struct
inode
*
inode
=
file_inode
(
fil
e
);
unsigned
int
offset
=
pos
&
~
PAGE_CACHE_MASK
;
unsigned
int
offset
=
pos
&
~
PAGE_CACHE_MASK
;
unsigned
long
n
=
pos
>>
PAGE_CACHE_SHIFT
;
unsigned
long
n
=
pos
>>
PAGE_CACHE_SHIFT
;
unsigned
long
npages
=
dir_pages
(
inode
);
unsigned
long
npages
=
dir_pages
(
inode
);
unsigned
chunk_mask
=
~
(
exofs_chunk_size
(
inode
)
-
1
);
unsigned
chunk_mask
=
~
(
exofs_chunk_size
(
inode
)
-
1
);
unsigned
char
*
types
=
NULL
;
int
need_revalidate
=
(
file
->
f_version
!=
inode
->
i_version
);
int
need_revalidate
=
(
filp
->
f_version
!=
inode
->
i_version
);
if
(
pos
>
inode
->
i_size
-
EXOFS_DIR_REC_LEN
(
1
))
if
(
pos
>
inode
->
i_size
-
EXOFS_DIR_REC_LEN
(
1
))
return
0
;
return
0
;
types
=
exofs_filetype_table
;
for
(
;
n
<
npages
;
n
++
,
offset
=
0
)
{
for
(
;
n
<
npages
;
n
++
,
offset
=
0
)
{
char
*
kaddr
,
*
limit
;
char
*
kaddr
,
*
limit
;
struct
exofs_dir_entry
*
de
;
struct
exofs_dir_entry
*
de
;
...
@@ -263,7 +260,7 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -263,7 +260,7 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
if
(
IS_ERR
(
page
))
{
if
(
IS_ERR
(
page
))
{
EXOFS_ERR
(
"ERROR: bad page in directory(0x%lx)
\n
"
,
EXOFS_ERR
(
"ERROR: bad page in directory(0x%lx)
\n
"
,
inode
->
i_ino
);
inode
->
i_ino
);
filp
->
f_
pos
+=
PAGE_CACHE_SIZE
-
offset
;
ctx
->
pos
+=
PAGE_CACHE_SIZE
-
offset
;
return
PTR_ERR
(
page
);
return
PTR_ERR
(
page
);
}
}
kaddr
=
page_address
(
page
);
kaddr
=
page_address
(
page
);
...
@@ -271,9 +268,9 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -271,9 +268,9 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
if
(
offset
)
{
if
(
offset
)
{
offset
=
exofs_validate_entry
(
kaddr
,
offset
,
offset
=
exofs_validate_entry
(
kaddr
,
offset
,
chunk_mask
);
chunk_mask
);
filp
->
f_
pos
=
(
n
<<
PAGE_CACHE_SHIFT
)
+
offset
;
ctx
->
pos
=
(
n
<<
PAGE_CACHE_SHIFT
)
+
offset
;
}
}
fil
p
->
f_version
=
inode
->
i_version
;
fil
e
->
f_version
=
inode
->
i_version
;
need_revalidate
=
0
;
need_revalidate
=
0
;
}
}
de
=
(
struct
exofs_dir_entry
*
)(
kaddr
+
offset
);
de
=
(
struct
exofs_dir_entry
*
)(
kaddr
+
offset
);
...
@@ -288,27 +285,24 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -288,27 +285,24 @@ exofs_readdir(struct file *filp, void *dirent, filldir_t filldir)
return
-
EIO
;
return
-
EIO
;
}
}
if
(
de
->
inode_no
)
{
if
(
de
->
inode_no
)
{
int
over
;
unsigned
char
t
;
unsigned
char
d_type
=
DT_UNKNOWN
;
if
(
types
&&
de
->
file_type
<
EXOFS_FT_MAX
)
if
(
de
->
file_type
<
EXOFS_FT_MAX
)
d_type
=
types
[
de
->
file_type
];
t
=
exofs_filetype_table
[
de
->
file_type
];
else
t
=
DT_UNKNOWN
;
offset
=
(
char
*
)
de
-
kaddr
;
if
(
!
dir_emit
(
ctx
,
de
->
name
,
de
->
name_len
,
over
=
filldir
(
dirent
,
de
->
name
,
de
->
name_len
,
(
n
<<
PAGE_CACHE_SHIFT
)
|
offset
,
le64_to_cpu
(
de
->
inode_no
),
le64_to_cpu
(
de
->
inode_no
),
d_type
);
t
))
{
if
(
over
)
{
exofs_put_page
(
page
);
exofs_put_page
(
page
);
return
0
;
return
0
;
}
}
}
}
filp
->
f_
pos
+=
le16_to_cpu
(
de
->
rec_len
);
ctx
->
pos
+=
le16_to_cpu
(
de
->
rec_len
);
}
}
exofs_put_page
(
page
);
exofs_put_page
(
page
);
}
}
return
0
;
return
0
;
}
}
...
@@ -669,5 +663,5 @@ int exofs_empty_dir(struct inode *inode)
...
@@ -669,5 +663,5 @@ int exofs_empty_dir(struct inode *inode)
const
struct
file_operations
exofs_dir_operations
=
{
const
struct
file_operations
exofs_dir_operations
=
{
.
llseek
=
generic_file_llseek
,
.
llseek
=
generic_file_llseek
,
.
read
=
generic_read_dir
,
.
read
=
generic_read_dir
,
.
readdir
=
exofs_readdir
,
.
iterate
=
exofs_readdir
,
};
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录