diff options
author | Robert Morris <[email protected]> | 2014-08-28 05:57:47 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2014-08-28 05:57:47 -0400 |
commit | 48aa917403de1599a02924e429a9f43ea31e9cc1 (patch) | |
tree | 037648a21b395eacdd2d716a33cfc95e14ff0a61 /mkfs.c | |
parent | 71453f72f285a17ccf0520b9dbdafdc701ff2f4a (diff) | |
download | xv6-labs-48aa917403de1599a02924e429a9f43ea31e9cc1.tar.gz xv6-labs-48aa917403de1599a02924e429a9f43ea31e9cc1.tar.bz2 xv6-labs-48aa917403de1599a02924e429a9f43ea31e9cc1.zip |
i think this is a working concurrent logging scheme
Diffstat (limited to 'mkfs.c')
-rw-r--r-- | mkfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ #define static_assert(a, b) do { switch (0) case 0: case (a): ; } while (0) -int nblocks = 985; +int nblocks = (995-LOGSIZE); int nlog = LOGSIZE; int ninodes = 200; int size = 1024; |