Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
addacc7d
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
addacc7d
编写于
7月 22, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Take dirtying the inode to callers of ext2_free_blocks()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
3889717d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
3 deletion
+7
-3
fs/ext2/balloc.c
fs/ext2/balloc.c
+0
-1
fs/ext2/inode.c
fs/ext2/inode.c
+4
-2
fs/ext2/xattr.c
fs/ext2/xattr.c
+3
-0
未找到文件。
fs/ext2/balloc.c
浏览文件 @
addacc7d
...
...
@@ -572,7 +572,6 @@ void ext2_free_blocks (struct inode * inode, unsigned long block,
brelse
(
bitmap_bh
);
release_blocks
(
sb
,
freed
);
dquot_free_block_nodirty
(
inode
,
freed
);
mark_inode_dirty
(
inode
);
}
/**
...
...
fs/ext2/inode.c
浏览文件 @
addacc7d
...
...
@@ -423,6 +423,8 @@ static int ext2_alloc_blocks(struct inode *inode,
failed_out:
for
(
i
=
0
;
i
<
index
;
i
++
)
ext2_free_blocks
(
inode
,
new_blocks
[
i
],
1
);
if
(
index
)
mark_inode_dirty
(
inode
);
return
ret
;
}
...
...
@@ -993,8 +995,8 @@ static inline void ext2_free_data(struct inode *inode, __le32 *p, __le32 *q)
else
if
(
block_to_free
==
nr
-
count
)
count
++
;
else
{
mark_inode_dirty
(
inode
);
ext2_free_blocks
(
inode
,
block_to_free
,
count
);
mark_inode_dirty
(
inode
);
free_this:
block_to_free
=
nr
;
count
=
1
;
...
...
@@ -1002,8 +1004,8 @@ static inline void ext2_free_data(struct inode *inode, __le32 *p, __le32 *q)
}
}
if
(
count
>
0
)
{
mark_inode_dirty
(
inode
);
ext2_free_blocks
(
inode
,
block_to_free
,
count
);
mark_inode_dirty
(
inode
);
}
}
...
...
fs/ext2/xattr.c
浏览文件 @
addacc7d
...
...
@@ -674,6 +674,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh,
new_bh
=
sb_getblk
(
sb
,
block
);
if
(
!
new_bh
)
{
ext2_free_blocks
(
inode
,
block
,
1
);
mark_inode_dirty
(
inode
);
error
=
-
EIO
;
goto
cleanup
;
}
...
...
@@ -729,6 +730,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh,
mb_cache_entry_free
(
ce
);
ea_bdebug
(
old_bh
,
"freeing"
);
ext2_free_blocks
(
inode
,
old_bh
->
b_blocknr
,
1
);
mark_inode_dirty
(
inode
);
/* We let our caller release old_bh, so we
* need to duplicate the buffer before. */
get_bh
(
old_bh
);
...
...
@@ -789,6 +791,7 @@ ext2_xattr_delete_inode(struct inode *inode)
if
(
ce
)
mb_cache_entry_free
(
ce
);
ext2_free_blocks
(
inode
,
EXT2_I
(
inode
)
->
i_file_acl
,
1
);
mark_inode_dirty
(
inode
);
get_bh
(
bh
);
bforget
(
bh
);
unlock_buffer
(
bh
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录