]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Eliminate vm_phys_bootstrap_alloc(). It was a failed attempt at
authoralc <alc@FreeBSD.org>
Sun, 30 Oct 2011 05:06:14 +0000 (05:06 +0000)
committeralc <alc@FreeBSD.org>
Sun, 30 Oct 2011 05:06:14 +0000 (05:06 +0000)
commit57e87053968d82083a0358efdc54fd5831e2b3e4
treec68c62addf3e0c34caba615d9beb3884e1aa3b90
parent8e54cbf4ab0561fda32fb114b684a2ddf1c1d8f8
Eliminate vm_phys_bootstrap_alloc().  It was a failed attempt at
eliminating duplicated code in the various pmap implementations.

Micro-optimize vm_phys_free_pages().

Introduce vm_phys_free_contig().  It is fast routine for freeing an
arbitrary number of physically contiguous pages.  In particular, it
doesn't require the number of pages to be a power of two.

Use "u_long" instead of "unsigned long".

Bruce Evans (bde@) has convinced me that the "boundary" parameters
to kmem_alloc_contig(), vm_phys_alloc_contig(), and
vm_reserv_reclaim_contig() should be of type "vm_paddr_t" and not
"u_long".  Make this change.
sys/vm/vm_contig.c
sys/vm/vm_extern.h
sys/vm/vm_phys.c
sys/vm/vm_phys.h
sys/vm/vm_reserv.c
sys/vm/vm_reserv.h