mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
correct pmap_ts_referenced return type
pmap_ts_referenced returns a count, not a boolean, and is supposed to have int as the return type not boolean_t. This worked previously because boolean_t is an int typedef. Discussed with: kib MFC after: 1 week Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
8c5a9161d1
commit
b93a053ca2
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ void pmap_remove_all(vm_page_t m);
|
|||
void pmap_remove_pages(pmap_t);
|
||||
void pmap_remove_write(vm_page_t m);
|
||||
void pmap_sync_icache(pmap_t, vm_offset_t, vm_size_t);
|
||||
boolean_t pmap_ts_referenced(vm_page_t m);
|
||||
int pmap_ts_referenced(vm_page_t m);
|
||||
void pmap_unwire(pmap_t pmap, vm_offset_t start, vm_offset_t end);
|
||||
void pmap_zero_page(vm_page_t);
|
||||
void pmap_zero_page_area(vm_page_t, int off, int size);
|
||||
|
|
|
|||
Loading…
Reference in a new issue