mirror of
https://git.proxmox.com/git/mirror_spl-debian
synced 2025-11-03 18:38:38 +00:00
9 lines
183 B
C
9 lines
183 B
C
#ifndef _SPL_PARAM_H
|
|
#define _SPL_PARAM_H
|
|
|
|
/* Pages to bytes and back */
|
|
#define ptob(pages) (pages * PAGE_SIZE)
|
|
#define btop(bytes) (bytes / PAGE_SIZE)
|
|
|
|
#endif /* SPL_PARAM_H */
|