| 192 | } |
| 193 | |
| 194 | static __inline boolean_t |
| 195 | pte1_is_valid(pt1_entry_t pte1) |
| 196 | { |
| 197 | int l1_type; |
| 198 | |
| 199 | l1_type = pte1 & L1_TYPE_MASK; |
| 200 | return ((l1_type == L1_TYPE_C) || (l1_type == L1_TYPE_S)); |
| 201 | } |
| 202 | |
| 203 | static __inline boolean_t |
| 204 | pte1_is_wired(pt1_entry_t pte1) |
no outgoing calls
no test coverage detected