Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
e06afa83
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e06afa83
编写于
5月 23, 2007
作者:
C
Chris Mason
提交者:
David Woodhouse
5月 23, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: rename
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
f9f3c6b6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
143 addition
and
18 deletion
+143
-18
fs/btrfs/TODO
fs/btrfs/TODO
+1
-0
fs/btrfs/ctree.h
fs/btrfs/ctree.h
+1
-0
fs/btrfs/dir-item.c
fs/btrfs/dir-item.c
+21
-6
fs/btrfs/super.c
fs/btrfs/super.c
+120
-12
未找到文件。
fs/btrfs/TODO
浏览文件 @
e06afa83
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
* Add generation number to key pointer in nodes
* Add generation number to key pointer in nodes
* Add generation number to inode
* Add generation number to inode
* Add ability to switch a block group from data to metadata or vice versa
* Add ability to switch a block group from data to metadata or vice versa
* forbid cross subvolume renames and hardlinks
* Release
* Release
* Do real tree locking
* Do real tree locking
* Add extent mirroring (backup copies of blocks)
* Add extent mirroring (backup copies of blocks)
...
...
fs/btrfs/ctree.h
浏览文件 @
e06afa83
...
@@ -32,6 +32,7 @@ extern struct kmem_cache *btrfs_path_cachep;
...
@@ -32,6 +32,7 @@ extern struct kmem_cache *btrfs_path_cachep;
#define BTRFS_CSUM_SIZE 32
#define BTRFS_CSUM_SIZE 32
/* four bytes for CRC32 */
/* four bytes for CRC32 */
#define BTRFS_CRC32_SIZE 4
#define BTRFS_CRC32_SIZE 4
#define BTRFS_EMPTY_DIR_SIZE 6
/*
/*
* the key defines the order in the tree, and so it also defines (optimal)
* the key defines the order in the tree, and so it also defines (optimal)
...
...
fs/btrfs/dir-item.c
浏览文件 @
e06afa83
...
@@ -9,7 +9,9 @@ static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
...
@@ -9,7 +9,9 @@ static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
struct
btrfs_root
*
root
,
struct
btrfs_root
*
root
,
struct
btrfs_path
*
path
,
struct
btrfs_path
*
path
,
struct
btrfs_key
*
cpu_key
,
struct
btrfs_key
*
cpu_key
,
u32
data_size
)
u32
data_size
,
const
char
*
name
,
int
name_len
)
{
{
int
ret
;
int
ret
;
char
*
ptr
;
char
*
ptr
;
...
@@ -18,6 +20,10 @@ static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
...
@@ -18,6 +20,10 @@ static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
ret
=
btrfs_insert_empty_item
(
trans
,
root
,
path
,
cpu_key
,
data_size
);
ret
=
btrfs_insert_empty_item
(
trans
,
root
,
path
,
cpu_key
,
data_size
);
if
(
ret
==
-
EEXIST
)
{
if
(
ret
==
-
EEXIST
)
{
struct
btrfs_dir_item
*
di
;
di
=
btrfs_match_dir_item_name
(
root
,
path
,
name
,
name_len
);
if
(
di
)
return
ERR_PTR
(
-
EEXIST
);
ret
=
btrfs_extend_item
(
trans
,
root
,
path
,
data_size
);
ret
=
btrfs_extend_item
(
trans
,
root
,
path
,
data_size
);
WARN_ON
(
ret
>
0
);
WARN_ON
(
ret
>
0
);
if
(
ret
)
if
(
ret
)
...
@@ -37,6 +43,7 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
...
@@ -37,6 +43,7 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
struct
btrfs_key
*
location
,
u8
type
)
struct
btrfs_key
*
location
,
u8
type
)
{
{
int
ret
=
0
;
int
ret
=
0
;
int
ret2
=
0
;
struct
btrfs_path
*
path
;
struct
btrfs_path
*
path
;
struct
btrfs_dir_item
*
dir_item
;
struct
btrfs_dir_item
*
dir_item
;
char
*
name_ptr
;
char
*
name_ptr
;
...
@@ -51,9 +58,12 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
...
@@ -51,9 +58,12 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
path
=
btrfs_alloc_path
();
path
=
btrfs_alloc_path
();
btrfs_init_path
(
path
);
btrfs_init_path
(
path
);
data_size
=
sizeof
(
*
dir_item
)
+
name_len
;
data_size
=
sizeof
(
*
dir_item
)
+
name_len
;
dir_item
=
insert_with_overflow
(
trans
,
root
,
path
,
&
key
,
data_size
);
dir_item
=
insert_with_overflow
(
trans
,
root
,
path
,
&
key
,
data_size
,
name
,
name_len
);
if
(
IS_ERR
(
dir_item
))
{
if
(
IS_ERR
(
dir_item
))
{
ret
=
PTR_ERR
(
dir_item
);
ret
=
PTR_ERR
(
dir_item
);
if
(
ret
==
-
EEXIST
)
goto
second_insert
;
goto
out
;
goto
out
;
}
}
...
@@ -66,19 +76,20 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
...
@@ -66,19 +76,20 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
btrfs_memcpy
(
root
,
path
->
nodes
[
0
]
->
b_data
,
name_ptr
,
name
,
name_len
);
btrfs_memcpy
(
root
,
path
->
nodes
[
0
]
->
b_data
,
name_ptr
,
name
,
name_len
);
btrfs_mark_buffer_dirty
(
path
->
nodes
[
0
]);
btrfs_mark_buffer_dirty
(
path
->
nodes
[
0
]);
second_insert:
/* FIXME, use some real flag for selecting the extra index */
/* FIXME, use some real flag for selecting the extra index */
if
(
root
==
root
->
fs_info
->
tree_root
)
{
if
(
root
==
root
->
fs_info
->
tree_root
)
{
ret
=
0
;
ret
=
0
;
goto
out
;
goto
out
;
}
}
btrfs_release_path
(
root
,
path
);
btrfs_release_path
(
root
,
path
);
btrfs_set_key_type
(
&
key
,
BTRFS_DIR_INDEX_KEY
);
btrfs_set_key_type
(
&
key
,
BTRFS_DIR_INDEX_KEY
);
key
.
offset
=
location
->
objectid
;
key
.
offset
=
location
->
objectid
;
dir_item
=
insert_with_overflow
(
trans
,
root
,
path
,
&
key
,
data_size
);
dir_item
=
insert_with_overflow
(
trans
,
root
,
path
,
&
key
,
data_size
,
name
,
name_len
);
if
(
IS_ERR
(
dir_item
))
{
if
(
IS_ERR
(
dir_item
))
{
ret
=
PTR_ERR
(
dir_item
);
ret
2
=
PTR_ERR
(
dir_item
);
goto
out
;
goto
out
;
}
}
btrfs_cpu_key_to_disk
(
&
dir_item
->
location
,
location
);
btrfs_cpu_key_to_disk
(
&
dir_item
->
location
,
location
);
...
@@ -90,7 +101,11 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
...
@@ -90,7 +101,11 @@ int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
btrfs_mark_buffer_dirty
(
path
->
nodes
[
0
]);
btrfs_mark_buffer_dirty
(
path
->
nodes
[
0
]);
out:
out:
btrfs_free_path
(
path
);
btrfs_free_path
(
path
);
return
ret
;
if
(
ret
)
return
ret
;
if
(
ret2
)
return
ret2
;
return
0
;
}
}
struct
btrfs_dir_item
*
btrfs_lookup_dir_item
(
struct
btrfs_trans_handle
*
trans
,
struct
btrfs_dir_item
*
btrfs_lookup_dir_item
(
struct
btrfs_trans_handle
*
trans
,
...
...
fs/btrfs/super.c
浏览文件 @
e06afa83
...
@@ -375,6 +375,7 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
...
@@ -375,6 +375,7 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
struct
btrfs_path
*
path
;
struct
btrfs_path
*
path
;
struct
btrfs_key
key
;
struct
btrfs_key
key
;
struct
btrfs_disk_key
*
found_key
;
struct
btrfs_disk_key
*
found_key
;
u32
found_type
;
struct
btrfs_leaf
*
leaf
;
struct
btrfs_leaf
*
leaf
;
struct
btrfs_file_extent_item
*
fi
=
NULL
;
struct
btrfs_file_extent_item
*
fi
=
NULL
;
u64
extent_start
=
0
;
u64
extent_start
=
0
;
...
@@ -386,12 +387,7 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
...
@@ -386,12 +387,7 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
/* FIXME, add redo link to tree so we don't leak on crash */
/* FIXME, add redo link to tree so we don't leak on crash */
key
.
objectid
=
inode
->
i_ino
;
key
.
objectid
=
inode
->
i_ino
;
key
.
offset
=
(
u64
)
-
1
;
key
.
offset
=
(
u64
)
-
1
;
key
.
flags
=
0
;
key
.
flags
=
(
u32
)
-
1
;
/*
* use BTRFS_CSUM_ITEM_KEY because it is larger than inline keys
* or extent data
*/
btrfs_set_key_type
(
&
key
,
BTRFS_CSUM_ITEM_KEY
);
while
(
1
)
{
while
(
1
)
{
btrfs_init_path
(
path
);
btrfs_init_path
(
path
);
ret
=
btrfs_search_slot
(
trans
,
root
,
&
key
,
path
,
-
1
,
1
);
ret
=
btrfs_search_slot
(
trans
,
root
,
&
key
,
path
,
-
1
,
1
);
...
@@ -405,10 +401,13 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
...
@@ -405,10 +401,13 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
reada_truncate
(
root
,
path
,
inode
->
i_ino
);
reada_truncate
(
root
,
path
,
inode
->
i_ino
);
leaf
=
btrfs_buffer_leaf
(
path
->
nodes
[
0
]);
leaf
=
btrfs_buffer_leaf
(
path
->
nodes
[
0
]);
found_key
=
&
leaf
->
items
[
path
->
slots
[
0
]].
key
;
found_key
=
&
leaf
->
items
[
path
->
slots
[
0
]].
key
;
found_type
=
btrfs_disk_key_type
(
found_key
);
if
(
btrfs_disk_key_objectid
(
found_key
)
!=
inode
->
i_ino
)
if
(
btrfs_disk_key_objectid
(
found_key
)
!=
inode
->
i_ino
)
break
;
break
;
if
(
btrfs_disk_key_type
(
found_key
)
!=
BTRFS_CSUM_ITEM_KEY
&&
if
(
found_type
!=
BTRFS_CSUM_ITEM_KEY
&&
btrfs_disk_key_type
(
found_key
)
!=
BTRFS_EXTENT_DATA_KEY
)
found_type
!=
BTRFS_DIR_ITEM_KEY
&&
found_type
!=
BTRFS_DIR_INDEX_KEY
&&
found_type
!=
BTRFS_EXTENT_DATA_KEY
)
break
;
break
;
if
(
btrfs_disk_key_offset
(
found_key
)
<
inode
->
i_size
)
if
(
btrfs_disk_key_offset
(
found_key
)
<
inode
->
i_size
)
break
;
break
;
...
@@ -460,10 +459,8 @@ static void btrfs_delete_inode(struct inode *inode)
...
@@ -460,10 +459,8 @@ static void btrfs_delete_inode(struct inode *inode)
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
trans
=
btrfs_start_transaction
(
root
,
1
);
trans
=
btrfs_start_transaction
(
root
,
1
);
btrfs_set_trans_block_group
(
trans
,
inode
);
btrfs_set_trans_block_group
(
trans
,
inode
);
if
(
S_ISREG
(
inode
->
i_mode
))
{
ret
=
btrfs_truncate_in_trans
(
trans
,
root
,
inode
);
ret
=
btrfs_truncate_in_trans
(
trans
,
root
,
inode
);
BUG_ON
(
ret
);
BUG_ON
(
ret
);
}
btrfs_free_inode
(
trans
,
root
,
inode
);
btrfs_free_inode
(
trans
,
root
,
inode
);
btrfs_end_transaction
(
trans
,
root
);
btrfs_end_transaction
(
trans
,
root
);
mutex_unlock
(
&
root
->
fs_info
->
fs_mutex
);
mutex_unlock
(
&
root
->
fs_info
->
fs_mutex
);
...
@@ -2504,6 +2501,116 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
...
@@ -2504,6 +2501,116 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
return
0
;
return
0
;
}
}
static
int
btrfs_rename
(
struct
inode
*
old_dir
,
struct
dentry
*
old_dentry
,
struct
inode
*
new_dir
,
struct
dentry
*
new_dentry
)
{
struct
btrfs_trans_handle
*
trans
;
struct
btrfs_root
*
root
=
BTRFS_I
(
old_dir
)
->
root
;
struct
inode
*
new_inode
=
new_dentry
->
d_inode
;
struct
inode
*
old_inode
=
old_dentry
->
d_inode
;
struct
timespec
ctime
=
CURRENT_TIME
;
struct
btrfs_path
*
path
;
struct
btrfs_dir_item
*
di
;
int
ret
;
if
(
S_ISDIR
(
old_inode
->
i_mode
)
&&
new_inode
&&
new_inode
->
i_size
>
BTRFS_EMPTY_DIR_SIZE
)
{
return
-
ENOTEMPTY
;
}
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
trans
=
btrfs_start_transaction
(
root
,
1
);
btrfs_set_trans_block_group
(
trans
,
new_dir
);
path
=
btrfs_alloc_path
();
if
(
!
path
)
{
ret
=
-
ENOMEM
;
goto
out_fail
;
}
old_dentry
->
d_inode
->
i_nlink
++
;
old_dir
->
i_ctime
=
old_dir
->
i_mtime
=
ctime
;
new_dir
->
i_ctime
=
new_dir
->
i_mtime
=
ctime
;
old_inode
->
i_ctime
=
ctime
;
if
(
S_ISDIR
(
old_inode
->
i_mode
)
&&
old_dir
!=
new_dir
)
{
struct
btrfs_key
*
location
=
&
BTRFS_I
(
new_dir
)
->
location
;
u64
old_parent_oid
;
di
=
btrfs_lookup_dir_item
(
trans
,
root
,
path
,
old_inode
->
i_ino
,
".."
,
2
,
-
1
);
if
(
IS_ERR
(
di
))
{
ret
=
PTR_ERR
(
di
);
goto
out_fail
;
}
if
(
!
di
)
{
ret
=
-
ENOENT
;
goto
out_fail
;
}
old_parent_oid
=
btrfs_disk_key_objectid
(
&
di
->
location
);
ret
=
btrfs_del_item
(
trans
,
root
,
path
);
if
(
ret
)
{
ret
=
-
EIO
;
goto
out_fail
;
}
btrfs_release_path
(
root
,
path
);
di
=
btrfs_lookup_dir_index_item
(
trans
,
root
,
path
,
old_inode
->
i_ino
,
old_parent_oid
,
".."
,
2
,
-
1
);
if
(
IS_ERR
(
di
))
{
ret
=
PTR_ERR
(
di
);
goto
out_fail
;
}
if
(
!
di
)
{
ret
=
-
ENOENT
;
goto
out_fail
;
}
ret
=
btrfs_del_item
(
trans
,
root
,
path
);
if
(
ret
)
{
ret
=
-
EIO
;
goto
out_fail
;
}
btrfs_release_path
(
root
,
path
);
ret
=
btrfs_insert_dir_item
(
trans
,
root
,
".."
,
2
,
old_inode
->
i_ino
,
location
,
0
);
if
(
ret
)
goto
out_fail
;
}
ret
=
btrfs_add_link
(
trans
,
new_dentry
,
old_inode
);
if
(
ret
==
-
EEXIST
&&
new_inode
)
ret
=
0
;
else
if
(
ret
)
goto
out_fail
;
ret
=
btrfs_unlink_trans
(
trans
,
root
,
old_dir
,
old_dentry
);
if
(
ret
)
goto
out_fail
;
if
(
new_inode
)
{
new_inode
->
i_ctime
=
CURRENT_TIME
;
di
=
btrfs_lookup_dir_index_item
(
trans
,
root
,
path
,
new_dir
->
i_ino
,
new_inode
->
i_ino
,
new_dentry
->
d_name
.
name
,
new_dentry
->
d_name
.
len
,
-
1
);
if
(
di
&&
!
IS_ERR
(
di
))
{
btrfs_del_item
(
trans
,
root
,
path
);
btrfs_release_path
(
root
,
path
);
}
if
(
S_ISDIR
(
new_inode
->
i_mode
))
clear_nlink
(
new_inode
);
else
drop_nlink
(
new_inode
);
btrfs_update_inode
(
trans
,
root
,
new_inode
);
}
out_fail:
btrfs_free_path
(
path
);
btrfs_end_transaction
(
trans
,
root
);
mutex_unlock
(
&
root
->
fs_info
->
fs_mutex
);
return
ret
;
}
static
struct
file_system_type
btrfs_fs_type
=
{
static
struct
file_system_type
btrfs_fs_type
=
{
.
owner
=
THIS_MODULE
,
.
owner
=
THIS_MODULE
,
.
name
=
"btrfs"
,
.
name
=
"btrfs"
,
...
@@ -2531,6 +2638,7 @@ static struct inode_operations btrfs_dir_inode_operations = {
...
@@ -2531,6 +2638,7 @@ static struct inode_operations btrfs_dir_inode_operations = {
.
unlink
=
btrfs_unlink
,
.
unlink
=
btrfs_unlink
,
.
mkdir
=
btrfs_mkdir
,
.
mkdir
=
btrfs_mkdir
,
.
rmdir
=
btrfs_rmdir
,
.
rmdir
=
btrfs_rmdir
,
.
rename
=
btrfs_rename
,
};
};
static
struct
inode_operations
btrfs_dir_ro_inode_operations
=
{
static
struct
inode_operations
btrfs_dir_ro_inode_operations
=
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录