Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4deb398a
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,发现更多精彩内容 >>
提交
4deb398a
编写于
5月 17, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[readdir] convert qnx6
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
663f4dec
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
17 deletion
+14
-17
fs/qnx6/dir.c
fs/qnx6/dir.c
+14
-17
未找到文件。
fs/qnx6/dir.c
浏览文件 @
4deb398a
...
@@ -65,8 +65,8 @@ static struct qnx6_long_filename *qnx6_longname(struct super_block *sb,
...
@@ -65,8 +65,8 @@ static struct qnx6_long_filename *qnx6_longname(struct super_block *sb,
static
int
qnx6_dir_longfilename
(
struct
inode
*
inode
,
static
int
qnx6_dir_longfilename
(
struct
inode
*
inode
,
struct
qnx6_long_dir_entry
*
de
,
struct
qnx6_long_dir_entry
*
de
,
void
*
dirent
,
loff_t
pos
,
struct
dir_context
*
ctx
,
unsigned
de_inode
,
filldir_t
filldir
)
unsigned
de_inode
)
{
{
struct
qnx6_long_filename
*
lf
;
struct
qnx6_long_filename
*
lf
;
struct
super_block
*
s
=
inode
->
i_sb
;
struct
super_block
*
s
=
inode
->
i_sb
;
...
@@ -104,8 +104,7 @@ static int qnx6_dir_longfilename(struct inode *inode,
...
@@ -104,8 +104,7 @@ static int qnx6_dir_longfilename(struct inode *inode,
QNX6DEBUG
((
KERN_INFO
"qnx6_readdir:%.*s inode:%u
\n
"
,
QNX6DEBUG
((
KERN_INFO
"qnx6_readdir:%.*s inode:%u
\n
"
,
lf_size
,
lf
->
lf_fname
,
de_inode
));
lf_size
,
lf
->
lf_fname
,
de_inode
));
if
(
filldir
(
dirent
,
lf
->
lf_fname
,
lf_size
,
pos
,
de_inode
,
if
(
!
dir_emit
(
ctx
,
lf
->
lf_fname
,
lf_size
,
de_inode
,
DT_UNKNOWN
))
{
DT_UNKNOWN
)
<
0
)
{
qnx6_put_page
(
page
);
qnx6_put_page
(
page
);
return
0
;
return
0
;
}
}
...
@@ -115,18 +114,19 @@ static int qnx6_dir_longfilename(struct inode *inode,
...
@@ -115,18 +114,19 @@ static int qnx6_dir_longfilename(struct inode *inode,
return
1
;
return
1
;
}
}
static
int
qnx6_readdir
(
struct
file
*
fil
p
,
void
*
dirent
,
filldir_t
filldir
)
static
int
qnx6_readdir
(
struct
file
*
fil
e
,
struct
dir_context
*
ctx
)
{
{
struct
inode
*
inode
=
file_inode
(
fil
p
);
struct
inode
*
inode
=
file_inode
(
fil
e
);
struct
super_block
*
s
=
inode
->
i_sb
;
struct
super_block
*
s
=
inode
->
i_sb
;
struct
qnx6_sb_info
*
sbi
=
QNX6_SB
(
s
);
struct
qnx6_sb_info
*
sbi
=
QNX6_SB
(
s
);
loff_t
pos
=
filp
->
f_
pos
&
~
(
QNX6_DIR_ENTRY_SIZE
-
1
);
loff_t
pos
=
ctx
->
pos
&
~
(
QNX6_DIR_ENTRY_SIZE
-
1
);
unsigned
long
npages
=
dir_pages
(
inode
);
unsigned
long
npages
=
dir_pages
(
inode
);
unsigned
long
n
=
pos
>>
PAGE_CACHE_SHIFT
;
unsigned
long
n
=
pos
>>
PAGE_CACHE_SHIFT
;
unsigned
start
=
(
pos
&
~
PAGE_CACHE_MASK
)
/
QNX6_DIR_ENTRY_SIZE
;
unsigned
start
=
(
pos
&
~
PAGE_CACHE_MASK
)
/
QNX6_DIR_ENTRY_SIZE
;
bool
done
=
false
;
bool
done
=
false
;
if
(
filp
->
f_pos
>=
inode
->
i_size
)
ctx
->
pos
=
pos
;
if
(
ctx
->
pos
>=
inode
->
i_size
)
return
0
;
return
0
;
for
(
;
!
done
&&
n
<
npages
;
n
++
,
start
=
0
)
{
for
(
;
!
done
&&
n
<
npages
;
n
++
,
start
=
0
)
{
...
@@ -137,11 +137,11 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -137,11 +137,11 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
if
(
IS_ERR
(
page
))
{
if
(
IS_ERR
(
page
))
{
printk
(
KERN_ERR
"qnx6_readdir: read failed
\n
"
);
printk
(
KERN_ERR
"qnx6_readdir: read failed
\n
"
);
filp
->
f_
pos
=
(
n
+
1
)
<<
PAGE_CACHE_SHIFT
;
ctx
->
pos
=
(
n
+
1
)
<<
PAGE_CACHE_SHIFT
;
return
PTR_ERR
(
page
);
return
PTR_ERR
(
page
);
}
}
de
=
((
struct
qnx6_dir_entry
*
)
page_address
(
page
))
+
start
;
de
=
((
struct
qnx6_dir_entry
*
)
page_address
(
page
))
+
start
;
for
(;
i
<
limit
;
i
++
,
de
++
,
pos
+=
QNX6_DIR_ENTRY_SIZE
)
{
for
(;
i
<
limit
;
i
++
,
de
++
,
ctx
->
pos
+=
QNX6_DIR_ENTRY_SIZE
)
{
int
size
=
de
->
de_size
;
int
size
=
de
->
de_size
;
u32
no_inode
=
fs32_to_cpu
(
sbi
,
de
->
de_inode
);
u32
no_inode
=
fs32_to_cpu
(
sbi
,
de
->
de_inode
);
...
@@ -154,8 +154,7 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -154,8 +154,7 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
structure / block */
structure / block */
if
(
!
qnx6_dir_longfilename
(
inode
,
if
(
!
qnx6_dir_longfilename
(
inode
,
(
struct
qnx6_long_dir_entry
*
)
de
,
(
struct
qnx6_long_dir_entry
*
)
de
,
dirent
,
pos
,
no_inode
,
ctx
,
no_inode
))
{
filldir
))
{
done
=
true
;
done
=
true
;
break
;
break
;
}
}
...
@@ -163,9 +162,8 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -163,9 +162,8 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
QNX6DEBUG
((
KERN_INFO
"qnx6_readdir:%.*s"
QNX6DEBUG
((
KERN_INFO
"qnx6_readdir:%.*s"
" inode:%u
\n
"
,
size
,
de
->
de_fname
,
" inode:%u
\n
"
,
size
,
de
->
de_fname
,
no_inode
));
no_inode
));
if
(
filldir
(
dirent
,
de
->
de_fname
,
size
,
if
(
!
dir_emit
(
ctx
,
de
->
de_fname
,
size
,
pos
,
no_inode
,
DT_UNKNOWN
)
no_inode
,
DT_UNKNOWN
))
{
<
0
)
{
done
=
true
;
done
=
true
;
break
;
break
;
}
}
...
@@ -173,7 +171,6 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
...
@@ -173,7 +171,6 @@ static int qnx6_readdir(struct file *filp, void *dirent, filldir_t filldir)
}
}
qnx6_put_page
(
page
);
qnx6_put_page
(
page
);
}
}
filp
->
f_pos
=
pos
;
return
0
;
return
0
;
}
}
...
@@ -282,7 +279,7 @@ unsigned qnx6_find_entry(int len, struct inode *dir, const char *name,
...
@@ -282,7 +279,7 @@ unsigned qnx6_find_entry(int len, struct inode *dir, const char *name,
const
struct
file_operations
qnx6_dir_operations
=
{
const
struct
file_operations
qnx6_dir_operations
=
{
.
llseek
=
generic_file_llseek
,
.
llseek
=
generic_file_llseek
,
.
read
=
generic_read_dir
,
.
read
=
generic_read_dir
,
.
readdir
=
qnx6_readdir
,
.
iterate
=
qnx6_readdir
,
.
fsync
=
generic_file_fsync
,
.
fsync
=
generic_file_fsync
,
};
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录