btopr(D3DK) —
.IX \f4btopr\fP(D3DK)
NAME
btopr − convert size in bytes to size in pages (round up)
SYNOPSIS
#include <sys/types.h>
#include <sys/ddi.h>
ulong_t btopr(ulong_t numbytes);
ARGUMENTS
numbytesSize in bytes to convert to equivalent size in pages.
DESCRIPTION
btopr returns the number of pages that are contained in the specified number of bytes, with upward rounding if the byte count is not a page multiple.
For example, if the page size is 2048, then btopr(4096) and btopr(4095) both return 2, and btopr(4097) returns 3.
btopr(0) returns 0.
RETURN VALUE
The return value is the number of pages. There are no invalid input values, and therefore no error return values.
LEVEL
Base or Interrupt.
NOTES
Does not sleep.
Driver-defined basic locks, read/write locks, and sleep locks may be held across calls to this function.
SEE ALSO
btop(D3DK), ptob(D3DK)
DDI/DKI