Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4427f0c3
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看板
提交
4427f0c3
编写于
6月 08, 2009
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
repair bfs_write_inode(), switch bfs to simple_fsync()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
224c8866
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
7 deletion
+13
-7
fs/bfs/dir.c
fs/bfs/dir.c
+4
-4
fs/bfs/inode.c
fs/bfs/inode.c
+9
-3
未找到文件。
fs/bfs/dir.c
浏览文件 @
4427f0c3
...
...
@@ -79,7 +79,7 @@ static int bfs_readdir(struct file *f, void *dirent, filldir_t filldir)
const
struct
file_operations
bfs_dir_operations
=
{
.
read
=
generic_read_dir
,
.
readdir
=
bfs_readdir
,
.
fsync
=
fi
le_fsync
,
.
fsync
=
simp
le_fsync
,
.
llseek
=
generic_file_llseek
,
};
...
...
@@ -205,7 +205,7 @@ static int bfs_unlink(struct inode *dir, struct dentry *dentry)
inode
->
i_nlink
=
1
;
}
de
->
ino
=
0
;
mark_buffer_dirty
(
bh
);
mark_buffer_dirty
_inode
(
bh
,
dir
);
dir
->
i_ctime
=
dir
->
i_mtime
=
CURRENT_TIME_SEC
;
mark_inode_dirty
(
dir
);
inode
->
i_ctime
=
dir
->
i_ctime
;
...
...
@@ -267,7 +267,7 @@ static int bfs_rename(struct inode *old_dir, struct dentry *old_dentry,
new_inode
->
i_ctime
=
CURRENT_TIME_SEC
;
inode_dec_link_count
(
new_inode
);
}
mark_buffer_dirty
(
old_bh
);
mark_buffer_dirty
_inode
(
old_bh
,
old_dir
);
error
=
0
;
end_rename:
...
...
@@ -320,7 +320,7 @@ static int bfs_add_entry(struct inode *dir, const unsigned char *name,
for
(
i
=
0
;
i
<
BFS_NAMELEN
;
i
++
)
de
->
name
[
i
]
=
(
i
<
namelen
)
?
name
[
i
]
:
0
;
mark_buffer_dirty
(
bh
);
mark_buffer_dirty
_inode
(
bh
,
dir
);
brelse
(
bh
);
return
0
;
}
...
...
fs/bfs/inode.c
浏览文件 @
4427f0c3
...
...
@@ -98,14 +98,15 @@ struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
return
ERR_PTR
(
-
EIO
);
}
static
int
bfs_write_inode
(
struct
inode
*
inode
,
int
unused
)
static
int
bfs_write_inode
(
struct
inode
*
inode
,
int
wait
)
{
struct
bfs_sb_info
*
info
=
BFS_SB
(
inode
->
i_sb
);
unsigned
int
ino
=
(
u16
)
inode
->
i_ino
;
unsigned
long
i_sblock
;
struct
bfs_inode
*
di
;
struct
buffer_head
*
bh
;
int
block
,
off
;
struct
bfs_sb_info
*
info
=
BFS_SB
(
inode
->
i_sb
)
;
int
err
=
0
;
dprintf
(
"ino=%08x
\n
"
,
ino
);
...
...
@@ -146,9 +147,14 @@ static int bfs_write_inode(struct inode *inode, int unused)
di
->
i_eoffset
=
cpu_to_le32
(
i_sblock
*
BFS_BSIZE
+
inode
->
i_size
-
1
);
mark_buffer_dirty
(
bh
);
if
(
wait
)
{
sync_dirty_buffer
(
bh
);
if
(
buffer_req
(
bh
)
&&
!
buffer_uptodate
(
bh
))
err
=
-
EIO
;
}
brelse
(
bh
);
mutex_unlock
(
&
info
->
bfs_lock
);
return
0
;
return
err
;
}
static
void
bfs_delete_inode
(
struct
inode
*
inode
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录