Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
db9f7c1a
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看板
提交
db9f7c1a
编写于
12月 17, 2014
作者:
J
Jaegeuk Kim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
f2fs: activate f2fs_trace_ios
This patch activates f2fs_trace_ios. Signed-off-by:
N
Jaegeuk Kim
<
jaegeuk@kernel.org
>
上级
9e4ded3f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
0 deletion
+7
-0
fs/f2fs/data.c
fs/f2fs/data.c
+3
-0
fs/f2fs/file.c
fs/f2fs/file.c
+2
-0
fs/f2fs/super.c
fs/f2fs/super.c
+2
-0
未找到文件。
fs/f2fs/data.c
浏览文件 @
db9f7c1a
...
...
@@ -22,6 +22,7 @@
#include "f2fs.h"
#include "node.h"
#include "segment.h"
#include "trace.h"
#include <trace/events/f2fs.h>
static
void
f2fs_read_end_io
(
struct
bio
*
bio
,
int
err
)
...
...
@@ -137,6 +138,7 @@ int f2fs_submit_page_bio(struct f2fs_sb_info *sbi, struct page *page,
struct
bio
*
bio
;
trace_f2fs_submit_page_bio
(
page
,
fio
->
blk_addr
,
fio
->
rw
);
f2fs_trace_ios
(
page
,
fio
,
0
);
/* Allocate a new bio */
bio
=
__bio_alloc
(
sbi
,
fio
->
blk_addr
,
1
,
is_read_io
(
fio
->
rw
));
...
...
@@ -185,6 +187,7 @@ void f2fs_submit_page_mbio(struct f2fs_sb_info *sbi, struct page *page,
}
io
->
last_block_in_bio
=
fio
->
blk_addr
;
f2fs_trace_ios
(
page
,
fio
,
0
);
up_write
(
&
io
->
io_rwsem
);
trace_f2fs_submit_page_mbio
(
page
,
fio
->
rw
,
fio
->
type
,
fio
->
blk_addr
);
...
...
fs/f2fs/file.c
浏览文件 @
db9f7c1a
...
...
@@ -26,6 +26,7 @@
#include "segment.h"
#include "xattr.h"
#include "acl.h"
#include "trace.h"
#include <trace/events/f2fs.h>
static
int
f2fs_vm_page_mkwrite
(
struct
vm_area_struct
*
vma
,
...
...
@@ -265,6 +266,7 @@ int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
ret
=
f2fs_issue_flush
(
sbi
);
out:
trace_f2fs_sync_file_exit
(
inode
,
need_cp
,
datasync
,
ret
);
f2fs_trace_ios
(
NULL
,
NULL
,
1
);
return
ret
;
}
...
...
fs/f2fs/super.c
浏览文件 @
db9f7c1a
...
...
@@ -30,6 +30,7 @@
#include "segment.h"
#include "xattr.h"
#include "gc.h"
#include "trace.h"
#define CREATE_TRACE_POINTS
#include <trace/events/f2fs.h>
...
...
@@ -493,6 +494,7 @@ int f2fs_sync_fs(struct super_block *sb, int sync)
}
else
{
f2fs_balance_fs
(
sbi
);
}
f2fs_trace_ios
(
NULL
,
NULL
,
1
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录