summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2017-10-24 08:49:31 -0400
committerRobert Morris <[email protected]>2017-10-24 08:49:31 -0400
commit0754d21c865e97582968fa5d155eac133e5829b0 (patch)
tree424ce60e416225dd987a68016649cda6758170c6 /file.c
parent1ab23170a1dda9fb16bd0a87c54040bbf08ebeaf (diff)
downloadxv6-labs-0754d21c865e97582968fa5d155eac133e5829b0.tar.gz
xv6-labs-0754d21c865e97582968fa5d155eac133e5829b0.tar.bz2
xv6-labs-0754d21c865e97582968fa5d155eac133e5829b0.zip
stricter log consumption by write()
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 95cadb3..24b32c2 100644
--- a/file.c
+++ b/file.c
@@ -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;