diff options
Diffstat (limited to 'e2fsprogs/ext2fs/jfs_dat.h')
-rw-r--r-- | e2fsprogs/ext2fs/jfs_dat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/e2fsprogs/ext2fs/jfs_dat.h b/e2fsprogs/ext2fs/jfs_dat.h index d6ad9c489..8ec5d3841 100644 --- a/e2fsprogs/ext2fs/jfs_dat.h +++ b/e2fsprogs/ext2fs/jfs_dat.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * jfs_dat.h --- stripped down header file which only contains the JFS | 2 | * jfs_dat.h --- stripped down header file which only contains the JFS |
3 | * on-disk data structures | 3 | * on-disk data structures |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #define JFS_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */ | 6 | #define JFS_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */ |
@@ -9,7 +9,7 @@ | |||
9 | * On-disk structures | 9 | * On-disk structures |
10 | */ | 10 | */ |
11 | 11 | ||
12 | /* | 12 | /* |
13 | * Descriptor block types: | 13 | * Descriptor block types: |
14 | */ | 14 | */ |
15 | 15 | ||
@@ -28,8 +28,8 @@ typedef struct journal_header_s | |||
28 | } journal_header_t; | 28 | } journal_header_t; |
29 | 29 | ||
30 | 30 | ||
31 | /* | 31 | /* |
32 | * The block tag: used to describe a single buffer in the journal | 32 | * The block tag: used to describe a single buffer in the journal |
33 | */ | 33 | */ |
34 | typedef struct journal_block_tag_s | 34 | typedef struct journal_block_tag_s |
35 | { | 35 | { |
@@ -55,10 +55,10 @@ typedef struct journal_superblock_s | |||
55 | __u32 s_blocksize; /* journal device blocksize */ | 55 | __u32 s_blocksize; /* journal device blocksize */ |
56 | __u32 s_maxlen; /* total blocks in journal file */ | 56 | __u32 s_maxlen; /* total blocks in journal file */ |
57 | __u32 s_first; /* first block of log information */ | 57 | __u32 s_first; /* first block of log information */ |
58 | 58 | ||
59 | /* Dynamic information describing the current state of the log */ | 59 | /* Dynamic information describing the current state of the log */ |
60 | __u32 s_sequence; /* first commit ID expected in log */ | 60 | __u32 s_sequence; /* first commit ID expected in log */ |
61 | __u32 s_start; /* blocknr of start of log */ | 61 | __u32 s_start; /* blocknr of start of log */ |
62 | 62 | ||
63 | } journal_superblock_t; | 63 | } journal_superblock_t; |
64 | 64 | ||