Home
last modified time | relevance | path

Searched refs:MAXOPBLOCKS (Results 1 – 3 of 3) sorted by relevance

/xv6-public/
H A Dparam.h10 #define MAXOPBLOCKS 10 // max # of blocks any FS op writes macro
11 #define LOGSIZE (MAXOPBLOCKS*3) // max data blocks in on-disk log
12 #define NBUF (MAXOPBLOCKS*3) // size of disk block cache
H A Dfile.c133 int max = ((MAXOPBLOCKS-1-1-2) / 2) * 512; in filewrite()
H A Dlog.c132 } else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){ in begin_op()