mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Made pmap_is_managed a static inline function.
This commit is contained in:
parent
34b36f0843
commit
5d7fe66e75
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1028
2 changed files with 4 additions and 4 deletions
|
@ -35,7 +35,7 @@
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
|
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
|
||||||
* $Id: pmap.c,v 1.12 1994/01/14 16:23:37 davidg Exp $
|
* $Id: pmap.c,v 1.13 1994/01/17 09:32:20 davidg Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -283,7 +283,7 @@ pmap_extract(pmap, va)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static inline int
|
||||||
pmap_is_managed(pa)
|
pmap_is_managed(pa)
|
||||||
vm_offset_t pa;
|
vm_offset_t pa;
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
|
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
|
||||||
* $Id: pmap.c,v 1.12 1994/01/14 16:23:37 davidg Exp $
|
* $Id: pmap.c,v 1.13 1994/01/17 09:32:20 davidg Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -283,7 +283,7 @@ pmap_extract(pmap, va)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static inline int
|
||||||
pmap_is_managed(pa)
|
pmap_is_managed(pa)
|
||||||
vm_offset_t pa;
|
vm_offset_t pa;
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue