MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / ext3_rec_len_from_disk

Function ext3_rec_len_from_disk

Ext4Fsd/include/linux/ext4.h:3296–3303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3294};
3295
3296static inline unsigned ext3_rec_len_from_disk(__le16 dlen)
3297{
3298 unsigned len = le16_to_cpu(dlen);
3299
3300 if (len == EXT3_MAX_REC_LEN || len == 0)
3301 return 1 << 16;
3302 return len;
3303}
3304
3305static inline __le16 ext3_rec_len_to_disk(unsigned len)
3306{

Callers 8

Ext2QueryDirectoryFunction · 0.85
ext3_check_dir_entryFunction · 0.85
ext3_next_entryFunction · 0.85
add_dirent_to_bufFunction · 0.85
make_indexed_dirFunction · 0.85
ext3_delete_entryFunction · 0.85
ext3_is_dir_emptyFunction · 0.85
search_dirblockFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected