Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
a9218f6b
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a9218f6b
编写于
3月 24, 2008
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add /dev/btrfs-control for device scanning ioctls
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
7d1660d4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
5 deletion
+40
-5
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+0
-4
fs/btrfs/super.c
fs/btrfs/super.c
+40
-1
未找到文件。
fs/btrfs/extent-tree.c
浏览文件 @
a9218f6b
...
...
@@ -374,10 +374,6 @@ struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
found_group
=
cache
;
goto
found
;
}
if
(
full_search
)
{
printk
(
"failed on cache %Lu used %Lu total %Lu
\n
"
,
cache
->
key
.
objectid
,
used
,
cache
->
key
.
offset
);
}
cond_resched
();
}
if
(
!
full_search
)
{
...
...
fs/btrfs/super.c
浏览文件 @
a9218f6b
...
...
@@ -36,6 +36,7 @@
#include <linux/parser.h>
#include <linux/ctype.h>
#include <linux/namei.h>
#include <linux/miscdevice.h>
#include "ctree.h"
#include "disk-io.h"
#include "transaction.h"
...
...
@@ -444,6 +445,13 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
return
0
;
}
static
long
btrfs_control_ioctl
(
struct
file
*
file
,
unsigned
int
cmd
,
unsigned
long
arg
)
{
printk
(
"btrfs control ioctl %d
\n
"
,
cmd
);
return
0
;
}
static
struct
file_system_type
btrfs_fs_type
=
{
.
owner
=
THIS_MODULE
,
.
name
=
"btrfs"
,
...
...
@@ -451,6 +459,7 @@ static struct file_system_type btrfs_fs_type = {
.
kill_sb
=
kill_block_super
,
.
fs_flags
=
FS_REQUIRES_DEV
,
};
static
void
btrfs_write_super_lockfs
(
struct
super_block
*
sb
)
{
struct
btrfs_root
*
root
=
btrfs_sb
(
sb
);
...
...
@@ -482,6 +491,30 @@ static struct super_operations btrfs_super_ops = {
.
write_super_lockfs
=
btrfs_write_super_lockfs
,
.
unlockfs
=
btrfs_unlockfs
,
};
static
const
struct
file_operations
btrfs_ctl_fops
=
{
.
unlocked_ioctl
=
btrfs_control_ioctl
,
.
compat_ioctl
=
btrfs_control_ioctl
,
.
owner
=
THIS_MODULE
,
};
static
struct
miscdevice
btrfs_misc
=
{
.
minor
=
MISC_DYNAMIC_MINOR
,
.
name
=
"btrfs-control"
,
.
fops
=
&
btrfs_ctl_fops
};
static
int
btrfs_interface_init
(
void
)
{
return
misc_register
(
&
btrfs_misc
);
}
void
btrfs_interface_exit
(
void
)
{
if
(
misc_deregister
(
&
btrfs_misc
)
<
0
)
printk
(
"misc_deregister failed for control device"
);
}
static
int
__init
init_btrfs_fs
(
void
)
{
int
err
;
...
...
@@ -503,11 +536,16 @@ static int __init init_btrfs_fs(void)
if
(
err
)
goto
free_extent_io
;
err
=
register_filesystem
(
&
btrfs_fs_type
);
err
=
btrfs_interface_init
(
);
if
(
err
)
goto
free_extent_map
;
err
=
register_filesystem
(
&
btrfs_fs_type
);
if
(
err
)
goto
unregister_ioctl
;
return
0
;
unregister_ioctl:
btrfs_interface_exit
();
free_extent_map:
extent_map_exit
();
free_extent_io:
...
...
@@ -526,6 +564,7 @@ static void __exit exit_btrfs_fs(void)
btrfs_destroy_cachep
();
extent_map_exit
();
extent_io_exit
();
btrfs_interface_exit
();
unregister_filesystem
(
&
btrfs_fs_type
);
btrfs_exit_sysfs
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录