diff options
Diffstat (limited to 'src/journal.h')
-rw-r--r-- | src/journal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/journal.h b/src/journal.h index 9a05fbc..3f3648a 100644 --- a/src/journal.h +++ b/src/journal.h @@ -29,6 +29,7 @@ typedef struct journal_descriptor_tag_s __u32 transaction; /* Transaction Sequence*/ } journal_descriptor_tag_t; + //struct for cache the block bitmap data typedef struct journal_bitmap_tag_s { @@ -38,6 +39,8 @@ typedef struct journal_bitmap_tag_s } journal_bitmap_tag_t; + +//head struct for collect the Block Bitmaps of Journal struct j_bitmap_list_t { int count; @@ -53,6 +56,7 @@ struct j_bitmap_list_t }; + void dump_journal_superblock( void); //print journal superblock extern int journal_open(char* , int );// open an extract the blocklist from journal extern int journal_close(void); // close the journal (last function in main() if the journal open) |