| 5035 | } |
| 5036 | |
| 5037 | static bool |
| 5038 | cache_fplookup_mp_supported(struct mount *mp) |
| 5039 | { |
| 5040 | |
| 5041 | MPASS(mp != NULL); |
| 5042 | if ((mp->mnt_kern_flag & MNTK_FPLOOKUP) == 0) |
| 5043 | return (false); |
| 5044 | return (true); |
| 5045 | } |
| 5046 | |
| 5047 | /* |
| 5048 | * Walk up the mount stack (if any). |
no outgoing calls
no test coverage detected