提交 0754d21c 创建 作者: Robert Morris's avatar Robert Morris

stricter log consumption by write()

上级 1ab23170
......@@ -130,7 +130,7 @@ filewrite(struct file *f, char *addr, int n)
// and 2 blocks of slop for non-aligned writes.
// this really belongs lower down, since writei()
// might be writing a device like the console.
int max = ((LOGSIZE-1-1-2) / 2) * 512;
int max = ((MAXOPBLOCKS-1-1-2) / 2) * 512;
int i = 0;
while(i < n){
int n1 = n - i;
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论