/* SPDX-License-Identifier: GPL-2.0 */1/*2* datastream.h3*4*/56struct buffer_head *befs_read_datastream(struct super_block *sb,7const befs_data_stream *ds,8befs_off_t pos, uint *off);910int befs_fblock2brun(struct super_block *sb, const befs_data_stream *data,11befs_blocknr_t fblock, befs_block_run *run);1213size_t befs_read_lsymlink(struct super_block *sb, const befs_data_stream *data,14void *buff, befs_off_t len);1516befs_blocknr_t befs_count_blocks(struct super_block *sb,17const befs_data_stream *ds);1819extern const befs_inode_addr BAD_IADDR;202122