diff options
author | Frans Kaashoek <[email protected]> | 2016-09-02 14:59:00 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2016-09-02 14:59:00 -0400 |
commit | b7fed77b7be4608b2ce6233a594c4fd7935e62c7 (patch) | |
tree | d02dd80dd5ec7c162f973e1fd9cf692c968bdc0a /fs.h | |
parent | 5f03799f84796f057924584cc64cf7f3b5ccd75f (diff) | |
download | xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.gz xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.bz2 xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.zip |
Fix a few lines that runoff is complaining about that they are too long
Diffstat (limited to 'fs.h')
-rw-r--r-- | fs.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,10 +6,11 @@ #define BSIZE 512 // block size // Disk layout: -// [ boot block | super block | log | inode blocks | free bit map | data blocks ] +// [ boot block | super block | log | inode blocks | +// free bit map | data blocks] // -// mkfs computes the super block and builds an initial file system. The super describes -// the disk layout: +// mkfs computes the super block and builds an initial file system. The +// super block describes the disk layout: struct superblock { uint size; // Size of file system image (blocks) uint nblocks; // Number of data blocks |