logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

pmap_unwire — unwire a range of virtual pages

Authors

       This manual page was written by Alan L. Cox <alc@rice.edu>.

Debian                                            July 17, 2014                                   PMAP_UNWIRE(9)

Description

       The function pmap_unwire() removes the wired attribute from each of the virtual-to-physical page mappings
       within  the virtual address range from start to end of the physical map pmap.  Every valid mapping within
       that range is required to have the wired attribute set.  Invalid mappings are ignored, since they  cannot
       have the wired attribute set.

Name

       pmap_unwire — unwire a range of virtual pages

Notes

       Only  the  function  pmap_enter(9)  can  be used to set the wired attribute of a virtual-to-physical page
       mapping.

See Also

pmap(9), pmap_enter(9), pmap_wired_count(9)

Synopsis

#include<sys/param.h>#include<vm/vm.h>#include<vm/pmap.h>voidpmap_unwire(pmap_tpmap, vm_offset_tstart, vm_offset_tend);

See Also