Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
xv6-public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
问题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
银宸时代
OS Lab Group
奖励实验
xv6-public
提交
7fb21193
提交
7fb21193
9月 02, 2011
创建
作者:
Austin Clements
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove comment debug prints from log.c; now fits nicely in a spread
上级
ee1b3306
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
0 行增加
和
9 行删除
+0
-9
log.c
log.c
+0
-9
没有找到文件。
log.c
浏览文件 @
7fb21193
...
...
@@ -71,8 +71,6 @@ install_trans(void)
{
int
tail
;
//if (log.lh.n > 0)
// cprintf("install_trans %d\n", log.lh.n);
for
(
tail
=
0
;
tail
<
log
.
lh
.
n
;
tail
++
)
{
struct
buf
*
lbuf
=
bread
(
log
.
dev
,
log
.
start
+
tail
+
1
);
// read log block
struct
buf
*
dbuf
=
bread
(
log
.
dev
,
log
.
lh
.
sector
[
tail
]);
// read dst
...
...
@@ -95,17 +93,12 @@ read_head(void)
log
.
lh
.
sector
[
i
]
=
lh
->
sector
[
i
];
}
brelse
(
buf
);
//if (log.lh.n > 0)
// cprintf("read_head: %d\n", log.lh.n);
}
// Write in-memory log header to disk, committing log entries till head
static
void
write_head
(
void
)
{
// if (log.lh.n > 0)
// cprintf("write_head: %d\n", log.lh.n);
struct
buf
*
buf
=
bread
(
log
.
dev
,
log
.
start
);
struct
logheader
*
hb
=
(
struct
logheader
*
)
(
buf
->
data
);
int
i
;
...
...
@@ -171,8 +164,6 @@ log_write(struct buf *b)
if
(
!
log
.
intrans
)
panic
(
"write outside of trans"
);
// cprintf("log_write: %d %d\n", b->sector, log.lh.n);
for
(
i
=
0
;
i
<
log
.
lh
.
n
;
i
++
)
{
if
(
log
.
lh
.
sector
[
i
]
==
b
->
sector
)
// log absorbtion?
break
;
...
...
编写
预览
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论