| 4001 | } |
| 4002 | |
| 4003 | static bool |
| 4004 | cache_fpl_isdotdot(struct componentname *cnp) |
| 4005 | { |
| 4006 | |
| 4007 | if (cnp->cn_namelen == 2 && |
| 4008 | cnp->cn_nameptr[1] == '.' && cnp->cn_nameptr[0] == '.') |
| 4009 | return (true); |
| 4010 | return (false); |
| 4011 | } |
| 4012 | |
| 4013 | static bool |
| 4014 | cache_can_fplookup(struct cache_fpl *fpl) |
no outgoing calls
no test coverage detected