Home
last modified time | relevance | path

Searched refs:ext4_es_type (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/fs/ext4/
Dextents_status.h104 static inline unsigned int ext4_es_type(struct extent_status *es) in ext4_es_type() function
111 return (ext4_es_type(es) & EXTENT_STATUS_WRITTEN) != 0; in ext4_es_is_written()
116 return (ext4_es_type(es) & EXTENT_STATUS_UNWRITTEN) != 0; in ext4_es_is_unwritten()
121 return (ext4_es_type(es) & EXTENT_STATUS_DELAYED) != 0; in ext4_es_is_delayed()
126 return (ext4_es_type(es) & EXTENT_STATUS_HOLE) != 0; in ext4_es_is_hole()
Dextents_status.c383 if (ext4_es_type(es1) != ext4_es_type(es2)) in ext4_es_can_be_merged()