Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
9cdda8d3
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9cdda8d3
编写于
5月 22, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[readdir] convert btrfs
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
8e28bc7e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
40 deletion
+21
-40
fs/btrfs/delayed-inode.c
fs/btrfs/delayed-inode.c
+4
-5
fs/btrfs/delayed-inode.h
fs/btrfs/delayed-inode.h
+1
-2
fs/btrfs/inode.c
fs/btrfs/inode.c
+16
-33
未找到文件。
fs/btrfs/delayed-inode.c
浏览文件 @
9cdda8d3
...
...
@@ -1681,8 +1681,7 @@ int btrfs_should_delete_dir_index(struct list_head *del_list,
* btrfs_readdir_delayed_dir_index - read dir info stored in the delayed tree
*
*/
int
btrfs_readdir_delayed_dir_index
(
struct
file
*
filp
,
void
*
dirent
,
filldir_t
filldir
,
int
btrfs_readdir_delayed_dir_index
(
struct
dir_context
*
ctx
,
struct
list_head
*
ins_list
)
{
struct
btrfs_dir_item
*
di
;
...
...
@@ -1704,13 +1703,13 @@ int btrfs_readdir_delayed_dir_index(struct file *filp, void *dirent,
list_for_each_entry_safe
(
curr
,
next
,
ins_list
,
readdir_list
)
{
list_del
(
&
curr
->
readdir_list
);
if
(
curr
->
key
.
offset
<
filp
->
f_
pos
)
{
if
(
curr
->
key
.
offset
<
ctx
->
pos
)
{
if
(
atomic_dec_and_test
(
&
curr
->
refs
))
kfree
(
curr
);
continue
;
}
filp
->
f_
pos
=
curr
->
key
.
offset
;
ctx
->
pos
=
curr
->
key
.
offset
;
di
=
(
struct
btrfs_dir_item
*
)
curr
->
data
;
name
=
(
char
*
)(
di
+
1
);
...
...
@@ -1719,7 +1718,7 @@ int btrfs_readdir_delayed_dir_index(struct file *filp, void *dirent,
d_type
=
btrfs_filetype_table
[
di
->
type
];
btrfs_disk_key_to_cpu
(
&
location
,
&
di
->
location
);
over
=
filldir
(
dirent
,
name
,
name_len
,
curr
->
key
.
offset
,
over
=
!
dir_emit
(
ctx
,
name
,
name_len
,
location
.
objectid
,
d_type
);
if
(
atomic_dec_and_test
(
&
curr
->
refs
))
...
...
fs/btrfs/delayed-inode.h
浏览文件 @
9cdda8d3
...
...
@@ -139,8 +139,7 @@ void btrfs_put_delayed_items(struct list_head *ins_list,
struct
list_head
*
del_list
);
int
btrfs_should_delete_dir_index
(
struct
list_head
*
del_list
,
u64
index
);
int
btrfs_readdir_delayed_dir_index
(
struct
file
*
filp
,
void
*
dirent
,
filldir_t
filldir
,
int
btrfs_readdir_delayed_dir_index
(
struct
dir_context
*
ctx
,
struct
list_head
*
ins_list
);
/* for init */
...
...
fs/btrfs/inode.c
浏览文件 @
9cdda8d3
...
...
@@ -5137,10 +5137,9 @@ unsigned char btrfs_filetype_table[] = {
DT_UNKNOWN
,
DT_REG
,
DT_DIR
,
DT_CHR
,
DT_BLK
,
DT_FIFO
,
DT_SOCK
,
DT_LNK
};
static
int
btrfs_real_readdir
(
struct
file
*
filp
,
void
*
dirent
,
filldir_t
filldir
)
static
int
btrfs_real_readdir
(
struct
file
*
file
,
struct
dir_context
*
ctx
)
{
struct
inode
*
inode
=
file_inode
(
fil
p
);
struct
inode
*
inode
=
file_inode
(
fil
e
);
struct
btrfs_root
*
root
=
BTRFS_I
(
inode
)
->
root
;
struct
btrfs_item
*
item
;
struct
btrfs_dir_item
*
di
;
...
...
@@ -5161,29 +5160,15 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
char
tmp_name
[
32
];
char
*
name_ptr
;
int
name_len
;
int
is_curr
=
0
;
/*
filp->f_
pos points to the current index? */
int
is_curr
=
0
;
/*
ctx->
pos points to the current index? */
/* FIXME, use a real flag for deciding about the key type */
if
(
root
->
fs_info
->
tree_root
==
root
)
key_type
=
BTRFS_DIR_ITEM_KEY
;
/* special case for "." */
if
(
filp
->
f_pos
==
0
)
{
over
=
filldir
(
dirent
,
"."
,
1
,
filp
->
f_pos
,
btrfs_ino
(
inode
),
DT_DIR
);
if
(
over
)
return
0
;
filp
->
f_pos
=
1
;
}
/* special case for .., just use the back ref */
if
(
filp
->
f_pos
==
1
)
{
u64
pino
=
parent_ino
(
filp
->
f_path
.
dentry
);
over
=
filldir
(
dirent
,
".."
,
2
,
filp
->
f_pos
,
pino
,
DT_DIR
);
if
(
over
)
return
0
;
filp
->
f_pos
=
2
;
}
if
(
!
dir_emit_dots
(
file
,
ctx
))
return
0
;
path
=
btrfs_alloc_path
();
if
(
!
path
)
return
-
ENOMEM
;
...
...
@@ -5197,7 +5182,7 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
}
btrfs_set_key_type
(
&
key
,
key_type
);
key
.
offset
=
filp
->
f_
pos
;
key
.
offset
=
ctx
->
pos
;
key
.
objectid
=
btrfs_ino
(
inode
);
ret
=
btrfs_search_slot
(
NULL
,
root
,
&
key
,
path
,
0
,
0
);
...
...
@@ -5223,14 +5208,14 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
break
;
if
(
btrfs_key_type
(
&
found_key
)
!=
key_type
)
break
;
if
(
found_key
.
offset
<
filp
->
f_
pos
)
if
(
found_key
.
offset
<
ctx
->
pos
)
goto
next
;
if
(
key_type
==
BTRFS_DIR_INDEX_KEY
&&
btrfs_should_delete_dir_index
(
&
del_list
,
found_key
.
offset
))
goto
next
;
filp
->
f_
pos
=
found_key
.
offset
;
ctx
->
pos
=
found_key
.
offset
;
is_curr
=
1
;
di
=
btrfs_item_ptr
(
leaf
,
slot
,
struct
btrfs_dir_item
);
...
...
@@ -5274,9 +5259,8 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
over
=
0
;
goto
skip
;
}
over
=
filldir
(
dirent
,
name_ptr
,
name_len
,
found_key
.
offset
,
location
.
objectid
,
d_type
);
over
=
!
dir_emit
(
ctx
,
name_ptr
,
name_len
,
location
.
objectid
,
d_type
);
skip:
if
(
name_ptr
!=
tmp_name
)
...
...
@@ -5295,9 +5279,8 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
if
(
key_type
==
BTRFS_DIR_INDEX_KEY
)
{
if
(
is_curr
)
filp
->
f_pos
++
;
ret
=
btrfs_readdir_delayed_dir_index
(
filp
,
dirent
,
filldir
,
&
ins_list
);
ctx
->
pos
++
;
ret
=
btrfs_readdir_delayed_dir_index
(
ctx
,
&
ins_list
);
if
(
ret
)
goto
nopos
;
}
...
...
@@ -5308,9 +5291,9 @@ static int btrfs_real_readdir(struct file *filp, void *dirent,
* 32-bit glibc will use getdents64, but then strtol -
* so the last number we can serve is this.
*/
filp
->
f_
pos
=
0x7fffffff
;
ctx
->
pos
=
0x7fffffff
;
else
filp
->
f_
pos
++
;
ctx
->
pos
++
;
nopos:
ret
=
0
;
err:
...
...
@@ -8731,7 +8714,7 @@ static const struct inode_operations btrfs_dir_ro_inode_operations = {
static
const
struct
file_operations
btrfs_dir_file_operations
=
{
.
llseek
=
generic_file_llseek
,
.
read
=
generic_read_dir
,
.
readdir
=
btrfs_real_readdir
,
.
iterate
=
btrfs_real_readdir
,
.
unlocked_ioctl
=
btrfs_ioctl
,
#ifdef CONFIG_COMPAT
.
compat_ioctl
=
btrfs_ioctl
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录