* Calculate the length of a tree entry's pathname. This utilizes the * memory structure of a tree entry to avoid the overhead of using a * generic strlen(). */
| 62 | * generic strlen(). |
| 63 | */ |
| 64 | static inline int tree_entry_len(const struct name_entry *ne) |
| 65 | { |
| 66 | return ne->pathlen; |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | * The _gently versions of these functions warn and return false on a |
no outgoing calls
no test coverage detected