datastream.h 539 B

123456789101112131415161718192021
  1. /*
  2. * datastream.h
  3. *
  4. */
  5. struct buffer_head *befs_read_datastream(struct super_block *sb,
  6. const befs_data_stream *ds,
  7. befs_off_t pos, uint * off);
  8. int befs_fblock2brun(struct super_block *sb, const befs_data_stream *data,
  9. befs_blocknr_t fblock, befs_block_run * run);
  10. size_t befs_read_lsymlink(struct super_block *sb, const befs_data_stream *data,
  11. void *buff, befs_off_t len);
  12. befs_blocknr_t befs_count_blocks(struct super_block *sb,
  13. const befs_data_stream *ds);
  14. extern const befs_inode_addr BAD_IADDR;