Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
286d6e70
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看板
提交
286d6e70
编写于
9月 30, 2011
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'btrfs-3.0' into for-linus
上级
0a7a0519
b6316429
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
8 deletion
+16
-8
fs/btrfs/file.c
fs/btrfs/file.c
+16
-8
未找到文件。
fs/btrfs/file.c
浏览文件 @
286d6e70
...
...
@@ -1036,11 +1036,13 @@ int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
* on error we return an unlocked page and the error value
* on success we return a locked page and 0
*/
static
int
prepare_uptodate_page
(
struct
page
*
page
,
u64
pos
)
static
int
prepare_uptodate_page
(
struct
page
*
page
,
u64
pos
,
bool
force_uptodate
)
{
int
ret
=
0
;
if
((
pos
&
(
PAGE_CACHE_SIZE
-
1
))
&&
!
PageUptodate
(
page
))
{
if
(((
pos
&
(
PAGE_CACHE_SIZE
-
1
))
||
force_uptodate
)
&&
!
PageUptodate
(
page
))
{
ret
=
btrfs_readpage
(
NULL
,
page
);
if
(
ret
)
return
ret
;
...
...
@@ -1061,7 +1063,7 @@ static int prepare_uptodate_page(struct page *page, u64 pos)
static
noinline
int
prepare_pages
(
struct
btrfs_root
*
root
,
struct
file
*
file
,
struct
page
**
pages
,
size_t
num_pages
,
loff_t
pos
,
unsigned
long
first_index
,
size_t
write_bytes
)
size_t
write_bytes
,
bool
force_uptodate
)
{
struct
extent_state
*
cached_state
=
NULL
;
int
i
;
...
...
@@ -1086,10 +1088,11 @@ static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
}
if
(
i
==
0
)
err
=
prepare_uptodate_page
(
pages
[
i
],
pos
);
err
=
prepare_uptodate_page
(
pages
[
i
],
pos
,
force_uptodate
);
if
(
i
==
num_pages
-
1
)
err
=
prepare_uptodate_page
(
pages
[
i
],
pos
+
write_bytes
);
pos
+
write_bytes
,
false
);
if
(
err
)
{
page_cache_release
(
pages
[
i
]);
faili
=
i
-
1
;
...
...
@@ -1158,6 +1161,7 @@ static noinline ssize_t __btrfs_buffered_write(struct file *file,
size_t
num_written
=
0
;
int
nrptrs
;
int
ret
=
0
;
bool
force_page_uptodate
=
false
;
nrptrs
=
min
((
iov_iter_count
(
i
)
+
PAGE_CACHE_SIZE
-
1
)
/
PAGE_CACHE_SIZE
,
PAGE_CACHE_SIZE
/
...
...
@@ -1200,7 +1204,8 @@ static noinline ssize_t __btrfs_buffered_write(struct file *file,
* contents of pages from loop to loop
*/
ret
=
prepare_pages
(
root
,
file
,
pages
,
num_pages
,
pos
,
first_index
,
write_bytes
);
pos
,
first_index
,
write_bytes
,
force_page_uptodate
);
if
(
ret
)
{
btrfs_delalloc_release_space
(
inode
,
num_pages
<<
PAGE_CACHE_SHIFT
);
...
...
@@ -1217,12 +1222,15 @@ static noinline ssize_t __btrfs_buffered_write(struct file *file,
if
(
copied
<
write_bytes
)
nrptrs
=
1
;
if
(
copied
==
0
)
if
(
copied
==
0
)
{
force_page_uptodate
=
true
;
dirty_pages
=
0
;
else
}
else
{
force_page_uptodate
=
false
;
dirty_pages
=
(
copied
+
offset
+
PAGE_CACHE_SIZE
-
1
)
>>
PAGE_CACHE_SHIFT
;
}
/*
* If we had a short copy we need to release the excess delaloc
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录