| 32 | #define _MACHINE_SF_BUF_H_ |
| 33 | |
| 34 | static inline void |
| 35 | sf_buf_map(struct sf_buf *sf, int flags) |
| 36 | { |
| 37 | |
| 38 | pmap_qenter(sf->kva, &(sf->m), 1); |
| 39 | } |
| 40 | |
| 41 | static inline int |
| 42 | sf_buf_unmap(struct sf_buf *sf) |
nothing calls this directly
no test coverage detected