Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ac39849d
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
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,发现更多精彩内容 >>
提交
ac39849d
编写于
10月 16, 2007
作者:
A
Aneesh Kumar K.V
提交者:
Theodore Ts'o
10月 17, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ext4: sparse fixes
Signed-off-by:
N
Aneesh Kumar K.V
<
aneesh.kumar@linux.vnet.ibm.com
>
上级
d8dd0b45
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
fs/ext4/fsync.c
fs/ext4/fsync.c
+1
-1
fs/ext4/inode.c
fs/ext4/inode.c
+1
-1
fs/ext4/xattr.c
fs/ext4/xattr.c
+2
-2
未找到文件。
fs/ext4/fsync.c
浏览文件 @
ac39849d
...
...
@@ -47,7 +47,7 @@ int ext4_sync_file(struct file * file, struct dentry *dentry, int datasync)
struct
inode
*
inode
=
dentry
->
d_inode
;
int
ret
=
0
;
J_ASSERT
(
ext4_journal_current_handle
()
==
0
);
J_ASSERT
(
ext4_journal_current_handle
()
==
NULL
);
/*
* data=writeback:
...
...
fs/ext4/inode.c
浏览文件 @
ac39849d
...
...
@@ -1027,7 +1027,7 @@ struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
}
if
(
buffer_new
(
&
dummy
))
{
J_ASSERT
(
create
!=
0
);
J_ASSERT
(
handle
!=
0
);
J_ASSERT
(
handle
!=
NULL
);
/*
* Now that we do not always journal data, we should
...
...
fs/ext4/xattr.c
浏览文件 @
ac39849d
...
...
@@ -1120,7 +1120,7 @@ int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
int
total_ino
,
total_blk
;
void
*
base
,
*
start
,
*
end
;
int
extra_isize
=
0
,
error
=
0
,
tried_min_extra_isize
=
0
;
int
s_min_extra_isize
=
EXT4_SB
(
inode
->
i_sb
)
->
s_es
->
s_min_extra_isize
;
int
s_min_extra_isize
=
le16_to_cpu
(
EXT4_SB
(
inode
->
i_sb
)
->
s_es
->
s_min_extra_isize
)
;
down_write
(
&
EXT4_I
(
inode
)
->
xattr_sem
);
retry:
...
...
@@ -1292,7 +1292,7 @@ int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
i
.
name
=
b_entry_name
;
i
.
value
=
buffer
;
i
.
value_len
=
cpu_to_le32
(
size
)
;
i
.
value_len
=
size
;
error
=
ext4_xattr_block_find
(
inode
,
&
i
,
bs
);
if
(
error
)
goto
cleanup
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录