The used_bitmap member in struct page_pool is a base address, so correct the comment to make it is easily understood.
Signed-off-by: Dongjiu Geng <[email protected]> --- hypervisor/include/jailhouse/paging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/include/jailhouse/paging.h b/hypervisor/include/jailhouse/paging.h index 8a6ff374..d592abad 100644 --- a/hypervisor/include/jailhouse/paging.h +++ b/hypervisor/include/jailhouse/paging.h @@ -64,7 +64,7 @@ struct page_pool { unsigned long pages; /** Number of currently used pages. */ unsigned long used_pages; - /** Bitmap of used pages. */ + /** Base address for bitmap of used pages. */ unsigned long *used_bitmap; /** Set @c PAGE_SCRUB_ON_FREE to zero-out pages on release. */ unsigned long flags; -- 2.17.1 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jailhouse-dev/20210608143937.17263-1-gengdongjiu1%40gmail.com.
