1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Reflow one of the comments describing vm_phys_alloc_npages().

This commit is contained in:
Alan Cox 2018-06-28 17:52:06 +00:00
parent 1bf1d84a53
commit 32d81f21b9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335767

View File

@ -609,10 +609,10 @@ vm_phys_split_pages(vm_page_t m, int oind, struct vm_freelist *fl, int order)
* within the specified domain. Returns the actual number of allocated pages
* and a pointer to each page through the array ma[].
*
* The returned pages may not be physically contiguous. However, in contrast to
* performing multiple, back-to-back calls to vm_phys_alloc_pages(..., 0),
* calling this function once to allocate the desired number of pages will avoid
* wasted time in vm_phys_split_pages().
* The returned pages may not be physically contiguous. However, in contrast
* to performing multiple, back-to-back calls to vm_phys_alloc_pages(..., 0),
* calling this function once to allocate the desired number of pages will
* avoid wasted time in vm_phys_split_pages().
*
* The free page queues for the specified domain must be locked.
*/