diff options
author | robi <robi> | 2011-12-15 18:21:45 +0000 |
---|---|---|
committer | robi <robi> | 2011-12-15 18:21:45 +0000 |
commit | 68176069298703104d23e24477ce6d5dc3c25cb1 (patch) | |
tree | 7d6fa24112fad15e6ad0cdfe8a643909cd823d06 /src/inode.h | |
parent | 55b4aadfe0f41b1c54da739bb28ac3f0c8ea2e78 (diff) |
prevent some loops in large file systems >8TB
Diffstat (limited to 'src/inode.h')
-rw-r--r-- | src/inode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inode.h b/src/inode.h index 399ead0..6127ac6 100644 --- a/src/inode.h +++ b/src/inode.h @@ -74,7 +74,7 @@ r_item* get_undel_inode(struct ring_buf*, __u32, __u32);// return the last undel r_item* get_last_undel_inode(struct ring_buf* );// return the last undeleted inode in journal blk_t get_inode_pos(struct ext2_super_block* , struct inode_pos_struct*, ext2_ino_t, int);//calculate the position of inode in FS void print_j_inode(struct ext2_inode_large* , ext2_ino_t , __u32, int );//function for dump_inode_list -int get_transaction_inode(ext2_ino_t, int, struct ext2_inode_large*);// get journalinode from transactionnumber +int get_transaction_inode(ext2_ino_t, __u32, struct ext2_inode_large*);// get journalinode from transactionnumber void dump_inode_list(struct ring_buf* , int);//print the contents of all copy of inode in the journal void dump_inode(FILE*, const char*, ext2_ino_t, struct ext2_inode*,int);//print the contents of inode int read_journal_inode( ext2_ino_t, struct ext2_inode*, __u32);// get the first Journal Inode by transaction |