MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sf_buf_kva

Function sf_buf_kva

freebsd/sys/sf_buf.h:115–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113void sf_buf_ref(struct sf_buf *);
114
115static inline vm_offset_t
116sf_buf_kva(struct sf_buf *sf)
117{
118 if (PMAP_HAS_DMAP)
119 return (PHYS_TO_DMAP(VM_PAGE_TO_PHYS((vm_page_t)sf)));
120
121 return (sf->kva);
122}
123
124static inline vm_page_t
125sf_buf_page(struct sf_buf *sf)

Callers 15

zfs_map_pageFunction · 0.50
uiomove_fromphysFunction · 0.50
vn_sendfileFunction · 0.50
_mb_unmapped_to_extFunction · 0.50
exec_map_first_pageFunction · 0.50
__elfN(map_partial)Function · 0.50
__elfN(map_insert)Function · 0.50
__elfN(load_section)Function · 0.50
domain_pgtbl_map_pteFunction · 0.50
dmar_map_pgtblFunction · 0.50
zbuf_setupFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected