| 3294 | }; |
| 3295 | |
| 3296 | static 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 | |
| 3305 | static inline __le16 ext3_rec_len_to_disk(unsigned len) |
| 3306 | { |
no outgoing calls
no test coverage detected